diff options
author | Andreas Beckmann <anbe@debian.org> | 2013-10-21 17:31:26 +0200 |
---|---|---|
committer | Andreas Beckmann <anbe@debian.org> | 2013-10-21 17:31:26 +0200 |
commit | cf0c0637846db6a14e350cb81fcb0b56667d7fe4 (patch) | |
tree | 0903cf736a337a19c65525af0c865f0bddfb6886 | |
parent | c53067a0a69f7664eb5465b13902d5f8c970bb49 (diff) | |
download | sendmail-cf0c0637846db6a14e350cb81fcb0b56667d7fe4.tar.gz |
work around automake to ensure the Makefile.in are regenerated
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 44df883..8c8488b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,7 @@ sendmail (8.14.4-4.2) UNRELEASED; urgency=low * Update logcheck patterns to match high precision timestamps, thanks to Ralf Döblitz (Closes: #638952) * debian/*/Makefile.am: Recover from Makefile.in. + * debian/rules: refresh-debian-configure: Refresh all Makefile.in, too. -- Andreas Beckmann <anbe@debian.org> Sat, 19 Oct 2013 02:41:51 +0200 diff --git a/debian/rules b/debian/rules index ae69990..8ae2056 100755 --- a/debian/rules +++ b/debian/rules @@ -184,8 +184,11 @@ refresh-debian:: #------------- -# Maintainer only rule... refresh debian/configure +# Maintainer only rule... refresh debian/configure and debian/*/Makefile.in +AUTOFOODUMMY = debian/AUTHORS debian/COPYING debian/ChangeLog debian/INSTALL debian/NEWS debian/README +AUTOFOODUMMY += debian/build/debian/changelog.in refresh-debian-configure: + touch $(AUTOFOODUMMY) # unpack -debian/rules configure # regenerate @@ -197,6 +200,8 @@ refresh-debian-configure: debian/rules configure # cleanup fakeroot debian/rules clean + $(RM) debian/aclocal.m4 + for f in $(AUTOFOODUMMY) ; do if [ ! -s $$f ]; then $(RM) $$f ; fi; done #------------- |