]> err.no Git - dpkg/commitdiff
Fix overzealous running of autoheader for every build.
authorAdam Heath <doogie@debian.org>
Sun, 19 May 2002 23:46:18 +0000 (23:46 +0000)
committerAdam Heath <doogie@debian.org>
Sun, 19 May 2002 23:46:18 +0000 (23:46 +0000)
ChangeLog
debian/rules

index 8f4ee9bdcf9e0b3108e29a60f7670c5882f9bf91..4ea9e23d56041490744aa9578c0ecd0490fd7d75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun May 19 18:48:39 CDT 2002 Adam Heath <doogie@debian.org>
+
+  * debian/rules: Fix overzealous running of autoheader for every build.
+
 Sun May 19 06:05:24 CDT 2002 Adam Heath <doogie@debian.org>
 
   * configure.in: Split out the -W*-prototype warnings into separate
index b08151f78b85bdcd3f243f4fc512f10e53eac6f4..d8564c2ee08c39be64ff2a196ce0518cc29c61fe 100755 (executable)
@@ -31,11 +31,13 @@ aclocal.m4: $(wildcard automake/*.m4)
 configure: configure.in aclocal.m4
        autoconf
 
-config.h.in: configure.in
+$(BUILD)/stamp.config.h.in: configure.in
+       install -d $(@D)
        autoheader
+       touch $@
 
 # Setup the buildlocation
-$(BUILD)/configure-stamp: configure config.h.in
+$(BUILD)/configure-stamp: configure $(BUILD)/stamp.config.h.in
        $(checkdir)
        install -d $(@D)
        cd $(@D) && LDFLAGS=$(LDFLAGS) $(CURDIR)/configure \