summaryrefslogtreecommitdiff
path: root/tests/repository
diff options
context:
space:
mode:
authorTommi Komulainen <tommi.komulainen@iki.fi>2008-10-31 10:54:32 +0000
committerTommi Komulainen <tko@src.gnome.org>2008-10-31 10:54:32 +0000
commit552af5d47aa419f8187ef49d9a951129f3f74bdb (patch)
treee1cb5e091d9f17648b4bb3e2636c5347db5011ff /tests/repository
parent70d91869ea55c545df65849fbe4120be44dfeba3 (diff)
downloadgobject-introspection-552af5d47aa419f8187ef49d9a951129f3f74bdb.tar.gz
List in-tree libraries first in LDADD / LIBADD
2008-10-31 Tommi Komulainen <tommi.komulainen@iki.fi> * giscanner/Makefile.am: * tests/invoke/Makefile.am: * tests/repository/Makefile.am: List in-tree libraries first in LDADD / LIBADD. If installed library is listed first, the resulting binary will prefer installed version to one in .libs, possibly making 'make check' behave strangely. svn path=/trunk/; revision=849
Diffstat (limited to 'tests/repository')
-rw-r--r--tests/repository/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/repository/Makefile.am b/tests/repository/Makefile.am
index 6790c427..51e97673 100644
--- a/tests/repository/Makefile.am
+++ b/tests/repository/Makefile.am
@@ -6,11 +6,11 @@ noinst_PROGRAMS = gitestrepo gitestthrows
gitestrepo_SOURCES = $(srcdir)/gitestrepo.c
gitestrepo_CPPFLAGS = $(GIREPO_CFLAGS) -I$(top_srcdir)/girepository
-gitestrepo_LDADD = $(GIREPO_LIBS) $(top_builddir)/girepository/libgirepository.la
+gitestrepo_LDADD = $(top_builddir)/girepository/libgirepository.la $(GIREPO_LIBS)
gitestthrows_SOURCES = $(srcdir)/gitestthrows.c
gitestthrows_CPPFLAGS = $(GIREPO_CFLAGS) -I$(top_srcdir)/girepository
-gitestthrows_LDADD = $(GIREPO_LIBS) $(top_builddir)/girepository/libgirepository.la
+gitestthrows_LDADD = $(top_builddir)/girepository/libgirepository.la $(GIREPO_LIBS)
TESTS = gitestrepo gitestthrows
TESTS_ENVIRONMENT=env top_builddir="$(top_builddir)" $(DEBUG)