diff options
author | Tommi Komulainen <tommi.komulainen@iki.fi> | 2008-10-31 10:54:32 +0000 |
---|---|---|
committer | Tommi Komulainen <tko@src.gnome.org> | 2008-10-31 10:54:32 +0000 |
commit | 552af5d47aa419f8187ef49d9a951129f3f74bdb (patch) | |
tree | e1cb5e091d9f17648b4bb3e2636c5347db5011ff /tests/repository/Makefile.am | |
parent | 70d91869ea55c545df65849fbe4120be44dfeba3 (diff) | |
download | gobject-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/Makefile.am')
-rw-r--r-- | tests/repository/Makefile.am | 4 |
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) |