From 5481b20fd42cd413c6c87531a3cc9ed5398e9d23 Mon Sep 17 00:00:00 2001 From: joey Date: Tue, 17 Aug 1999 05:17:53 +0000 Subject: [PATCH] r237: Initial Import --- debian/changelog | 6 ++++++ dh_fixperms | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) 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 -- 2.39.5