From: Adam Heath Date: Sun, 19 May 2002 23:46:18 +0000 (+0000) Subject: Fix overzealous running of autoheader for every build. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad2f24d26819b37e03902fccfac2ecdbeeffd554;p=dpkg Fix overzealous running of autoheader for every build. --- diff --git a/ChangeLog b/ChangeLog index 8f4ee9bd..4ea9e23d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun May 19 18:48:39 CDT 2002 Adam Heath + + * debian/rules: Fix overzealous running of autoheader for every build. + Sun May 19 06:05:24 CDT 2002 Adam Heath * configure.in: Split out the -W*-prototype warnings into separate diff --git a/debian/rules b/debian/rules index b08151f7..d8564c2e 100755 --- a/debian/rules +++ b/debian/rules @@ -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 \