Make sure the configure files are newer than configure.in the
debian/rules file so that a dpkg-source created patch won't
trigger an attempt rebuild of the configure script. (Addresses
Debian Bug #272558)
diff --git a/debian/changelog b/debian/changelog
index 39a42ba..8a371dc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+e2fsprogs (1.35-8) unstable; urgency=low
+
+ * Make sure the configure files are newer than configure.in the
+ debian/rules file so that a dpkg-source created patch won't
+ trigger an attempt rebuild of the configure script. (Closes: #272558)
+
+ -- Theodore Y. Ts'o <tytso@mit.edu> Wed, 22 Sep 2004 00:50:20 -0400
+
e2fsprogs (1.35-7) unstable; urgency=low
* Make sure "done" gets correctly translated in badblocks(8), and update
diff --git a/debian/rules b/debian/rules
index 30a7c8c..ac13097 100644
--- a/debian/rules
+++ b/debian/rules
@@ -109,6 +109,9 @@
${CFGSTDSTAMP}:
dh_testdir
+ # Make sure we don't try to rebuild the configure scripts
+ find . -name configure | xargs touch
+
mkdir -p ${stdbuilddir}
ifeq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
cd ${stdbuilddir} && \