From: joey Date: Tue, 17 Aug 1999 05:17:53 +0000 (+0000) Subject: r237: Initial Import X-Git-Tag: debian_version_0_1~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=5481b20fd42cd413c6c87531a3cc9ed5398e9d23;p=debhelper.git r237: Initial Import --- diff --git a/debian/changelog b/debian/changelog index 0906c8d..ec5c505 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (2.0.12) unstable; urgency=low + + * dh_installinfo: fixed #SECTION# substitution. + + -- Joey Hess 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 diff --git a/dh_fixperms b/dh_fixperms index e1ae612..f74a269 100755 --- a/dh_fixperms +++ b/dh_fixperms @@ -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