diff options
author | joey <joey> | 1999-08-17 05:17:53 +0000 |
---|---|---|
committer | joey <joey> | 1999-08-17 05:17:53 +0000 |
commit | 5481b20fd42cd413c6c87531a3cc9ed5398e9d23 (patch) | |
tree | f1b23f4595c21a1194f03ce2a45c9377e1684fd8 | |
parent | a0061c2bdf1020c3475604422755eabd3a46da76 (diff) | |
download | debhelper-5481b20fd42cd413c6c87531a3cc9ed5398e9d23.tar.gz |
r237: Initial Import
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | dh_fixperms | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 0906c8d5..ec5c5058 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 <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 diff --git a/dh_fixperms b/dh_fixperms index e1ae6126..f74a269c 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 |