From: joey Date: Mon, 27 Nov 2000 04:06:39 +0000 (+0000) Subject: r393: * DH_COMPAT=3 now enables the following new features which I can't just X-Git-Tag: version_2.0.101~206 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8ce86a9b3b01893d90c109d726c7ddcfb31538a8;p=debhelper.git r393: * DH_COMPAT=3 now enables the following new features which I can't just turn on by default for fear of breaking backwards compatability: - dh_makeshlibs makes the postinst/postrm call ldconfig. Closes: #77154 Patch from Masato Taruishi (modified). If you use this, be sure dh_makeshlibs runs before dh_installdeb; many old rules files have the ordering backwards. - dh_installdeb now causes all files in /etc to be registered as conffiles. - debian/README is now supported: it is treated exactly like debian/README.Debian. Either file is installed as README.Debian in non-native packages, and now as just README in native packages. Closes: #34628 * This is really only the start of the changes for v3, so use with caution.. * dh_du has finally been removed. It has been deprecated for ages, and a grep of the archive shows that nothing is using it except biss-awt and scsh. I filed bugs on both almost exactly a year ago. Those bugs should now be raised to severity important.. * --number option (to dh_installemacsen) is removed. It has been deprecated for a while and nothing uses it. Use --priority instead. --- diff --git a/dh_installdeb b/dh_installdeb index 1447ebf..63e0f7f 100755 --- a/dh_installdeb +++ b/dh_installdeb @@ -60,5 +60,8 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { if (-z "$TMP/DEBIAN/conffiles") { doit("rm", "-f", "$TMP/DEBIAN/conffiles"); } + else { + doit("chmod", 644, "$TMP/DEBIAN/conffiles"); + } } }