]> git.donarmstrong.com Git - debhelper.git/commitdiff
r237: Initial Import
authorjoey <joey>
Tue, 17 Aug 1999 05:17:53 +0000 (05:17 +0000)
committerjoey <joey>
Tue, 17 Aug 1999 05:17:53 +0000 (05:17 +0000)
debian/changelog
dh_fixperms

index 0906c8d551fc368091d79c1a7d9b6160ca3d2fda..ec5c5058d9f39fb45771fd9ed9dc6e0a852923ad 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (2.0.12) unstable; urgency=low
+
+  * dh_installinfo: fixed #SECTION# substitution.
+
+ -- Joey Hess <joeyh@master.debian.org>  Wed,  7 Jul 1999 17:51:59 -0700
+
 debhelper (2.0.11) unstable; urgency=low
 
   * At long, long last, dh_installinfo is written. It takes a simple list of
index e1ae612681bd138d30319edef5c1dd0b95830f39..f74a269c99a73efefd273f637c6e18fe6b271928 100755 (executable)
@@ -25,13 +25,13 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
 
        # 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 ! -regex '.*/examples/.*' -print0",
+       complex_doit("find $TMP/usr/share/doc $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",
+       complex_doit("find $TMP/usr/share/doc $TMP/usr/doc -type d $find_options -print0",
                "2>/dev/null | xargs -0r chmod 755");
 
        # Executable man pages are a bad thing..
-       complex_doit("find $TMP/usr/man/ $TMP/usr/X11*/man/ -type f",
+       complex_doit("find $TMP/usr/share/man $TMP/usr/man/ $TMP/usr/X11*/man/ -type f",
                "$find_options -print0 2>/dev/null | xargs -0r chmod 644");
 
        # ..and so are executable shared and static libraries