From 1c947488f62e8104bee0ecbf674c321fd3229763 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 12 Jan 2009 18:21:49 +0000 Subject: [PATCH] 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. --- ChangeLog | 7 +++++++ qemud/Makefile.am | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d47d67399c..ff96feba87 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon Jan 12 18:55:15 +0100 2009 Jim Meyering + + 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 * docs/formatdomain.html.in docs/libvirt.rng docs/formatdomain.html: diff --git a/qemud/Makefile.am b/qemud/Makefile.am index 793535f1be..236212d96c 100644 --- a/qemud/Makefile.am +++ b/qemud/Makefile.am @@ -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