From: Daniel P. Berrange Date: Thu, 4 Sep 2008 13:17:47 +0000 (+0000) Subject: Fix make check when augparse is missing X-Git-Tag: LIBVIRT_0_4_6~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9ed7914c2004fde39d5462467b5277356cfc5de;p=thirdparty%2Flibvirt.git Fix make check when augparse is missing --- diff --git a/ChangeLog b/ChangeLog index fdcdafe8e0..f8ddeaa833 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 4 14:16:20 BST 2008 Daniel P. Berrange + + * qemud/Makefile.am: Fix make check when augparse is not + available + Thu Sep 4 15:05:34 CEST 2008 Daniel Veillard * src/storage_backend_logical.c: fix a miscalculation of command line diff --git a/qemud/Makefile.am b/qemud/Makefile.am index 30353ea26c..5d6ff6397c 100644 --- a/qemud/Makefile.am +++ b/qemud/Makefile.am @@ -183,7 +183,7 @@ libvirtd.init: libvirtd.init.in mv $@-t $@ check-local: - test -x $(AUGPARSE) && $(AUGPARSE) -I $(srcdir) test_libvirtd.aug + if [ -x $(AUGPARSE) ]; then $(AUGPARSE) -I $(srcdir) test_libvirtd.aug ; fi else