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.
This commit is contained in:
Jim Meyering
2009-01-12 18:21:49 +00:00
parent c8ef64bdd7
commit 1c947488f6
2 changed files with 9 additions and 1 deletions

View 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