summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2014-02-21 11:37:14 +0800
committerColin Walters <walters@verbum.org>2014-02-26 23:10:56 -0500
commit1c027e7ed0a5ed5b02fe78a82e725815a79ac4ce (patch)
tree19964759a0e9ad55b3f2cc51e8759aa9c90ff4c2
parent58798198e83f0ee1925a9adee70cc5f6b0cdd8cb (diff)
downloadgjs-1c027e7ed0a5ed5b02fe78a82e725815a79ac4ce.tar.gz
build: Use LDADD for libraries, not LDFLAGS
https://bugzilla.gnome.org/show_bug.cgi?id=724853
-rw-r--r--Makefile-insttest.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile-insttest.am b/Makefile-insttest.am
index 61627ffa..ec760d41 100644
--- a/Makefile-insttest.am
+++ b/Makefile-insttest.am
@@ -40,12 +40,14 @@ endif
# This rpath /nowhere thing is the libtool upstream recommended way to
# force generation of shared libraries, which we need in order for the
# tests to work uninstalled.
-common_test_ldflags = -avoid-version -rpath /nowhere $(GJS_LIBS)
+common_test_ldflags = -avoid-version -rpath /nowhere
+common_test_libadd = $(GJS_LIBS)
nodist_libregress_la_SOURCES = $(GI_DATADIR)/tests/regress.c $(GI_DATADIR)/tests/regress.h
libregress_la_CPPFLAGS = $(AM_CPPFLAGS)
libregress_la_CFLAGS = $(GJS_CFLAGS)
libregress_la_LDFLAGS = $(common_test_ldflags)
+libregress_la_LIBADD = $(common_test_libadd)
libregress_scannerflags_includes = --include=Gio-2.0
if ENABLE_CAIRO
libregress_la_CFLAGS += $(GJS_CAIRO_CFLAGS)
@@ -57,9 +59,11 @@ endif
nodist_libwarnlib_la_SOURCES = $(GI_DATADIR)/tests/warnlib.c $(GI_DATADIR)/tests/warnlib.h
libwarnlib_la_CFLAGS = $(GJS_CFLAGS)
libwarnlib_la_LDFLAGS = $(common_test_ldflags)
+libwarnlib_la_LIBADD = $(common_test_libadd)
nodist_libgimarshallingtests_la_SOURCES = $(GI_DATADIR)/tests/gimarshallingtests.c $(GI_DATADIR)/tests/gimarshallingtests.h
libgimarshallingtests_la_CFLAGS = $(GJS_CFLAGS)
libgimarshallingtests_la_LDFLAGS = $(common_test_ldflags)
+libgimarshallingtests_la_LIBADD = $(common_test_libadd)
Regress-1.0.gir: libregress.la
Regress_1_0_gir_LIBS = libregress.la