summaryrefslogtreecommitdiffstats
path: root/server/tests
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2010-12-08 18:43:06 +0200
committerAlon Levy <alevy@redhat.com>2010-12-08 18:43:23 +0200
commit8c6f94a67922a699c12de14478be96ea4a486d71 (patch)
tree8a259e609daf8bafb2c425dce3240fad2d17ff89 /server/tests
parent3f2997411ec57b4d31e99d4b333d7919741d8968 (diff)
downloadspice-8c6f94a67922a699c12de14478be96ea4a486d71.tar.gz
spice-8c6f94a67922a699c12de14478be96ea4a486d71.tar.xz
spice-8c6f94a67922a699c12de14478be96ea4a486d71.zip
server/tests: fix for AM_LDFLAGS introduction
Diffstat (limited to 'server/tests')
-rw-r--r--server/tests/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/Makefile.am b/server/tests/Makefile.am
index 1f8817f2..d19abcb0 100644
--- a/server/tests/Makefile.am
+++ b/server/tests/Makefile.am
@@ -13,18 +13,18 @@ noinst_PROGRAMS = test_just_sockets_no_ssl test_empty_success test_fail_on_null_
test_display_no_ssl_SOURCES = test_display_no_ssl.c basic_event_loop.c
-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_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)