]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: fix stamp file name
authorEric Blake <eblake@redhat.com>
Fri, 11 May 2012 14:20:34 +0000 (08:20 -0600)
committerEric Blake <eblake@redhat.com>
Thu, 17 May 2012 16:48:04 +0000 (10:48 -0600)
Ever since commit c964b6a, make was trying to find the timestamp
of '""./apibuild.py".stamp"', but only touching 'apibuild.py.stamp',
and thus always rebuilding.  Reported by Daniel P. Berrange.

* docs/Makefile.am (APIBUILD, APIBUILD_STAMP): Omit bogus quotes.
(cherry picked from commit c0057d9a49f6aead9a893c33069d2a11c03bc1e8)

docs/Makefile.am

index c24b69a393e49e92c8cc1233afa8b44ca04881c9..c013841798f81adc268c507c680995f9ba871e81 100644 (file)
@@ -1,6 +1,6 @@
 ## Process this file with automake to produce Makefile.in
 
-## Copyright (C) 2005-2011 Red Hat, Inc.
+## Copyright (C) 2005-2012 Red Hat, Inc.
 ## See COPYING.LIB for the License of this software
 
 SUBDIRS= schemas
@@ -190,8 +190,8 @@ python_generated_files = \
                $(srcdir)/libvirt-qemu-api.xml \
                $(srcdir)/libvirt-qemu-refs.xml
 
-APIBUILD="$(srcdir)/apibuild.py"
-APIBUILD_STAMP="$(APIBUILD).stamp"
+APIBUILD=$(srcdir)/apibuild.py
+APIBUILD_STAMP=$(APIBUILD).stamp
 
 $(python_generated_files): $(APIBUILD_STAMP)