]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix make check when augparse is missing
authorDaniel P. Berrange <berrange@redhat.com>
Thu, 4 Sep 2008 13:17:47 +0000 (13:17 +0000)
committerDaniel P. Berrange <berrange@redhat.com>
Thu, 4 Sep 2008 13:17:47 +0000 (13:17 +0000)
ChangeLog
qemud/Makefile.am

index fdcdafe8e0fcb1911dd42909cab18f7f2fd8f910..f8ddeaa833a707d42ea868d721442de6fa7e0f5c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Sep  4 14:16:20 BST 2008 Daniel P. Berrange <berrange@redhat.com>
+
+       * qemud/Makefile.am: Fix make check when augparse is not
+       available
+
 Thu Sep  4 15:05:34 CEST 2008 Daniel Veillard <veillard@redhat.com>
 
        * src/storage_backend_logical.c: fix a miscalculation of command line
index 30353ea26c6910e850eff98c5a84617c75a63ac0..5d6ff6397ca2174e3f89145c8fe6ce6ae0f56b19 100644 (file)
@@ -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