+debhelper (0.99.3) unstable; urgency=low
+
+ * dh_movefiles: Fixed a over-eager sanity check introduced in the last
+ version.
+
+ -- Joey Hess <joeyh@master.debian.org> Mon, 3 Aug 1998 18:31:45 -0700
+
debhelper (0.99.2) unstable; urgency=low
* dh_movefiles: allow passing of files to move on the command line. Only
for file in postinst postrm preinst prerm; do
f="`pkgfile $PACKAGE $file`"
if [ "$f" ]; then
- filelist="$filelist$f "
+ if ! grep -q "#DEBHELPER#" "$f"; then
+ filelist="$filelist$f "
+
+ fi
fi
done
done
tomove="$* $tomove"
fi
- if [ "$tomove" -a "$PACKAGE" = "$MAINPACKAGE" ]; then
+ if [ "$tomove" -a "$TMP" = "debian/tmp" ]; then
error "I was asked to move files from debian/tmp to debian/tmp."
fi