]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
use $(top_srcdir) for m4/ and $(VC_LIST)
authorGuido Günther <agx@sigxcpu.org>
Wed, 17 Dec 2008 08:30:20 +0000 (08:30 +0000)
committerGuido Günther <agx@sigxcpu.org>
Wed, 17 Dec 2008 08:30:20 +0000 (08:30 +0000)
ChangeLog
Makefile.maint

index 08a1cb5576568361796c7e0f5467a4bdd104cce2..ffe9d87c85aca37f46b519ee4161b3387a059c7c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Dec 17 09:28:15 CET 2008 Guido Günther <agx@sigxcpu.org>
+
+       * Makefile.maint: use $(top_srcdir) for m4/ and $(VC_LIST)
+
 Wed Dec 17 08:02:01 +0100 2008 Jim Meyering <meyering@redhat.com>
 
        fix numa-related (and kernel-dependent) test failures
index 5758215465a2c0870867e533cfee2c54ad5ec7db..687183ec81b4a0df7e1312308f8ffd44e1ac1523 100644 (file)
@@ -8,10 +8,10 @@ gzip_rsyncable := \
   $(shell gzip --help 2>/dev/null|grep rsyncable >/dev/null && echo --rsyncable)
 GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
 
-VC_LIST = build-aux/vc-list-files
+VC_LIST = $(top_srcdir)/build-aux/vc-list-files
 
 VC_LIST_EXCEPT = \
-  $(VC_LIST) | if test -f .x-$@; then grep -vEf .x-$@; else grep -v ChangeLog; fi
+  $(VC_LIST) -C $(top_srcdir) | if test -f .x-$@; then grep -vEf .x-$@; else grep -v ChangeLog; fi
 
 # Prevent programs like 'sort' from considering distinct strings to be equal.
 # Doing it here saves us from having to set LC_ALL elsewhere in this file.
@@ -478,7 +478,7 @@ changelog-check:
        fi
 
 m4-check:
-       @grep -n 'AC_DEFUN([^[]' m4/*.m4 \
+       @grep -n 'AC_DEFUN([^[]' $(top_srcdir)/m4/*.m4 \
          && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
               exit 1; } || :