]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
fix non-srcdir build failure
authorJim Meyering <meyering@redhat.com>
Mon, 12 Jan 2009 18:21:49 +0000 (18:21 +0000)
committerJim Meyering <meyering@redhat.com>
Mon, 12 Jan 2009 18:21:49 +0000 (18:21 +0000)
* qemud/Makefile.am (check-local): Prefix use of test_libvirtd.aug
with $(srcdir)/.  Add quotes around $(AUGPARSE), in case it expands
to something unusual.

ChangeLog
qemud/Makefile.am

index d47d67399ce36aaf9aa650d2f1313d39812f5621..ff96feba87b1611381a0e18f94229bcc2eb6e01a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Jan 12 18:55:15 +0100 2009 Jim Meyering <meyering@redhat.com>
+
+       fix non-srcdir build failure
+       * qemud/Makefile.am (check-local): Prefix use of test_libvirtd.aug
+       with $(srcdir)/.  Add quotes around $(AUGPARSE), in case it expands
+       to something unusual.
+
 Mon Jan 12 16:07:32 CET 2009 Daniel Veillard <veillard@redhat.com>
 
        * docs/formatdomain.html.in docs/libvirt.rng docs/formatdomain.html:
index 793535f1be30e0a7ca56405f966ae2cac4a313a4..236212d96c4a9311e9a5d1fdd1728e46932c5372 100644 (file)
@@ -239,7 +239,8 @@ libvirtd.init: libvirtd.init.in
        mv $@-t $@
 
 check-local:
-       if [ -x $(AUGPARSE) ]; then $(AUGPARSE) -I $(srcdir) test_libvirtd.aug ; fi
+       test -x '$(AUGPARSE)' \
+         && '$(AUGPARSE)' -I $(srcdir) $(srcdir)/test_libvirtd.aug || :
 
 else