summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2011-01-18 00:58:46 -0500
committerRyan Lortie <desrt@desrt.ca>2011-01-18 00:58:46 -0500
commit9c2c9c87a70423265d14b3aca78ce25b9705d4aa (patch)
treec68002c9e2107b44c08261d2e442a7d6509fccb0
parentb322a4c1c472a1838331efd053e17a877204dc29 (diff)
downloaddconf-9c2c9c87a70423265d14b3aca78ce25b9705d4aa.tar.gz
Fix linking of dbus1 test case
Some linkers care about the order of -l options appearing on the commandline.
-rw-r--r--tests/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 6f14f30..3b66beb 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -3,8 +3,8 @@ INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/engine -I$(top_srcdir)/client
noinst_PROGRAMS = paths gsettings dbus1
-dbus1_LDFLAGS = -L../dbus-1 -ldconf-dbus-1 $(glib_LIBS)
gsettings_LDADD = $(gio_LIBS)
+dbus1_LDADD = -L../dbus-1 -ldconf-dbus-1 $(glib_LIBS)
paths_LDADD = $(gio_LIBS)
paths_SOURCES = \
../common/dconf-paths.c \