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

@ -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:

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