+debhelper (1.1.9) unstable; urgency=low
+
+ * dh_fixperms: has been removing the +x bits of all doc/*/examples/* files
+ since version 0.97 or so. Fixed.
+
+ -- Joey Hess <joeyh@master.debian.org> Sun, 16 Aug 1998 17:11:48 -0700
+
debhelper (1.1.8) unstable; urgency=low
* Dh_Lib.pm: made U_PARAMS an array of parameters.
}
if (! $dh{K_FLAG}) {
- doit("rm","-f","debian/files*");
+ doit("rm","-f","debian/files");
}
# Remove other temp files.
doit "chmod -R u+rw $TMP"
fi
- FIND_OPTIONS=
+ FIND_OPTIONS=""
else
# Do it the hard way.
complex_doit "find $TMP ! \( $DH_EXCLUDE_FIND \) -print0 \
# Fix up premissions in usr/doc, setting everything to not exectable
# by default, but leave examples directories alone.
- complex_doit "find $TMP/usr/doc -type f $FIND_OPTIONS -print0 \
- 2>/dev/null | xargs -0r chmod 644"
+ complex_doit "find $TMP/usr/doc -type f $FIND_OPTIONS ! -regex .\*/examples/.\* -print0 \
+ 2>/dev/null | xargs -0r chmod 644"
complex_doit "find $TMP/usr/doc -type d $FIND_OPTIONS -print0 \
2>/dev/null | xargs -0r chmod 755"
* dh_installdocs used -m 655 for a TODO file. (minor, dh_fixperms cleans up
after it)
+* dh_fixperms had a problkem with removing x bits on examples files -
+ backport fix.
+