diff --git a/ChangeLog b/ChangeLog index fdcdafe8e0fcb1911dd42909cab18f7f2fd8f910..f8ddeaa833a707d42ea868d721442de6fa7e0f5c 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 30353ea26c6910e850eff98c5a84617c75a63ac0..5d6ff6397ca2174e3f89145c8fe6ce6ae0f56b19 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