]> git.donarmstrong.com Git - debhelper.git/commitdiff
r20: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 04:36:56 +0000 (04:36 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 04:36:56 +0000 (04:36 +0000)
debian/changelog
dh_fixperms
dh_fixperms.1

index e0caa2cc6e217b2e5205e424ab44074ae91bb396..a33224d9401f8d0931fa9a8c89dfa9c2fb6b97c8 100644 (file)
@@ -1,3 +1,11 @@
+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.
index 6e935a8ae4bd71787ef6ef4d4c633569c331b9c2..1c4fef7cccc2379c7ea04b11bd9164b973e5a777 100755 (executable)
@@ -16,8 +16,8 @@ for PACKAGE in $DH_DOPACKAGES; do
        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
index b5cb4e138f553dc5c9be7fd68a71f8ae4020d021..cfba6481eac7769a8af8cd4e3307fc78067b7f72 100644 (file)
@@ -8,10 +8,10 @@ dh_fixperms \- fix permissions of files in package build directories
 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