]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Makefile.maint: use $(srcdir), not $(top_srcdir)
authorJim Meyering <meyering@redhat.com>
Thu, 18 Dec 2008 06:45:05 +0000 (06:45 +0000)
committerJim Meyering <meyering@redhat.com>
Thu, 18 Dec 2008 06:45:05 +0000 (06:45 +0000)
ChangeLog
Makefile.maint

index 6000f409d742258f0fcec7add95bcab87046092f..6b80e3e17ad2c2e314b78db4c75c5353a2177da6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 18 07:44:07 +0100 2008 Jim Meyering <meyering@redhat.com>
+
+       Makefile.maint: use $(srcdir), not $(top_srcdir)
+
 Wed Dec 17 21:49:39 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
 
        * src/remote_internal.c: Fix unreachable return statement
index bad330d3f130226a1e54ec889b7ff371f25a1b04..29c50fc88a2094ff22392a7f4418c037ee5febfb 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 = $(top_srcdir)/build-aux/vc-list-files
+VC_LIST = $(srcdir)/build-aux/vc-list-files
 
 VC_LIST_EXCEPT = \
-  $(VC_LIST) -C $(top_srcdir) | if test -f .x-$@; then grep -vEf .x-$@; else grep -v ChangeLog; fi
+  $(VC_LIST) | 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.
@@ -493,7 +493,7 @@ changelog-check:
        fi
 
 m4-check:
-       @grep -n 'AC_DEFUN([^[]' $(top_srcdir)/m4/*.m4 \
+       @grep -n 'AC_DEFUN([^[]' $(srcdir)/m4/*.m4 \
          && { echo 'Makefile.maint: quote the first arg to AC_DEFUN' 1>&2; \
               exit 1; } || :