summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-12-06 18:02:52 +0200
committerAlon Levy <alevy@redhat.com>2011-07-21 15:08:32 +0300
commit58f79a98b696ab36e869d5c1377a9bf0891f28ca (patch)
treeacddcd362eddb81a44cf8427b5d56528c45a8f5c /server
parentae7659fea94717741b7cccdd5718b1fff2804a9d (diff)
downloadspice-58f79a98b696ab36e869d5c1377a9bf0891f28ca.tar.gz
spice-58f79a98b696ab36e869d5c1377a9bf0891f28ca.tar.xz
spice-58f79a98b696ab36e869d5c1377a9bf0891f28ca.zip
server/tests: Makefile.am: use AM_LDFLAGS instead of LDFLAGS
Diffstat (limited to 'server')
-rw-r--r--server/tests/Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/server/tests/Makefile.am b/server/tests/Makefile.am
index 11cc5f2f..ddac420e 100644
--- a/server/tests/Makefile.am
+++ b/server/tests/Makefile.am
@@ -7,24 +7,24 @@ INCLUDES = \
$(SPICE_NONPKGCONFIG_CFLAGS) \
$(NULL)
-LDFLAGS = -L../.libs -lspice-server
+AM_LDFLAGS = -L../.libs -lspice-server
noinst_PROGRAMS = test_just_sockets_no_ssl test_empty_success test_fail_on_null_core_interface test_display_no_ssl
test_display_no_ssl_SOURCES = test_display_no_ssl.c basic_event_loop.c basic_event_loop.h test_util.h
-test_display_no_ssl_LDFLAGS = $(LDFLAGS)
+test_display_no_ssl_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS)
test_just_sockets_no_ssl_SOURCES = test_just_sockets_no_ssl.c basic_event_loop.c basic_event_loop.h test_util.h
-test_just_sockets_no_ssl_LDFLAGS = $(LDFLAGS)
+test_just_sockets_no_ssl_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS)
test_empty_success_SOURCES = test_empty_success.c
-test_empty_success_LDFLAGS = $(LDFLAGS)
+test_empty_success_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS)
test_fail_on_null_core_interface_SOURCES = test_fail_on_null_core_interface.c
-test_fail_on_null_core_interface_LDFLAGS = $(LDFLAGS)
+test_fail_on_null_core_interface_LDFLAGS = $(AM_LDFLAGS) $(LDFLAGS)