From: Simon McVittie Date: Thu, 5 Feb 2015 12:47:32 +0000 (+0000) Subject: tests: make sure to specify CPPFLAGS where needed X-Git-Tag: dbus-1.9.10~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f762bef246c6c6b8839db2ae6e07bb7b141c186;p=thirdparty%2Fdbus.git tests: make sure to specify CPPFLAGS where needed test-marshal and test-syntax need the $(testutils_shared_if_possible_cppflags), so that they will get the $(static_cflags) when we are not linking to dbus-glib. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=88980 Reviewed-by: Ralf Habacker --- diff --git a/test/Makefile.am b/test/Makefile.am index ca2fb9dbf..ea0998281 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -241,6 +241,7 @@ test_sd_activation_LDADD = \ $(NULL) test_marshal_SOURCES = marshal.c +test_marshal_CPPFLAGS = $(testutils_shared_if_possible_cppflags) test_marshal_LDADD = \ $(testutils_shared_if_possible_libs) \ $(GLIB_LIBS) \ @@ -256,6 +257,7 @@ test_monitor_LDADD = \ $(NULL) test_syntax_SOURCES = syntax.c +test_syntax_CPPFLAGS = $(testutils_shared_if_possible_cppflags) test_syntax_LDADD = \ $(testutils_shared_if_possible_libs) \ $(GLIB_LIBS) \