+debhelper (0.14) unstable; urgency=low
+
+ * dh_fixperms: leave permissions on files in /usr/doc/packages/examples
+ unchanged.
+ * Install examples/rules* executable.
+
+ -- Joey Hess <joeyh@master.debian.org> Mon, 27 Oct 1997 12:42:33 -0500
+
debhelper (0.13) unstable; urgency=low
* Added dh_makeshlibs, automatically generates a shlibs file.
fi
# Fix up premissions in usr/doc, setting everything to not exectable
- # by default.
- files=`find debian/$TMP/usr/doc -type f 2>/dev/null | tr "\n" " "` || true
+ # by default, but leave examples directories alone.
+ files=`find debian/$TMP/usr/doc -type f 2>/dev/null | grep -v /examples/ | tr "\n" " "` || true
if [ "$files" ]; then
doit "chmod 644 $files"
fi
dh_fixperms is a debhelper program that is responsible for setting the
permissions of files in package build directories to a sane state.
.P
-dh_fixperms makes all files in usr/doc in the package build directory be
-mode 644. It also changes the permissions of all man pages to mode 644.
-It makes all files be owned by root, and it removes group and other write
-permission from all files.
+dh_fixperms makes all files in usr/doc in the package build directory
+(excluding files in the examples/ directory) be mode 644. It also changes
+the permissions of all man pages to mode 644. It makes all files be owned by
+root, and it removes group and other write permission from all files.
.SH OPTIONS
.TP
.B \-v