[Spice-commits] server/tests

Alon Levy alon at kemper.freedesktop.org
Wed Dec 8 08:44:27 PST 2010


 server/tests/Makefile.am |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 8c6f94a67922a699c12de14478be96ea4a486d71
Author: Alon Levy <alevy at redhat.com>
Date:   Wed Dec 8 18:43:06 2010 +0200

    server/tests: fix for AM_LDFLAGS introduction

diff --git a/server/tests/Makefile.am b/server/tests/Makefile.am
index 1f8817f..d19abcb 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)
 
 


More information about the Spice-commits mailing list