[Spice-commits] tests/Makefile.am

Marc-André Lureau elmarco at kemper.freedesktop.org
Fri Mar 11 19:27:55 UTC 2016


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

New commits:
commit 0a1f9bfd296ac98a125bc27d97bebfd042a74937
Author: Marc-André Lureau <marcandre.lureau at gmail.com>
Date:   Fri Mar 11 19:40:34 2016 +0100

    build-sys: fix make check when polkit not available
    
    acl-helper needs polkit (and unix atm) to build.
    
    Signed-off-by: Marc-André Lureau <marcandre.lureau at gmail.com>

diff --git a/tests/Makefile.am b/tests/Makefile.am
index 24d45c9..c1d95c1 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,18 +1,21 @@
 NULL =
 
+noinst_PROGRAMS =
 TESTS = coroutine				\
 	util					\
 	session					\
-	usb-acl-helper				\
 	$(NULL)
 
 if WITH_PHODAV
 TESTS += pipe
 endif
 
-noinst_PROGRAMS = $(TESTS) \
-		  mock-acl-helper \
-		  $(NULL)
+if WITH_POLKIT
+TESTS += usb-acl-helper
+noinst_PROGRAMS += mock-acl-helper
+endif
+
+noinst_PROGRAMS += $(TESTS)
 
 AM_CPPFLAGS =					\
 	$(COMMON_CFLAGS)			\


More information about the Spice-commits mailing list