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

index c5b997d1cda16981ff326b0a48982541082d202b..d90dcbedea9b5ff9104a05ca0b3b635d2c277ed8 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (2.0.08) unstable; urgency=low
+
+  * dh_*: redirect cd output to /den/null, because CD can actually output
+    things if CDPATH is set.
+
+ -- Joey Hess <joeyh@master.debian.org>  Tue,  6 Jul 1999 10:14:00 -0700
+
 debhelper (2.0.07) unstable; urgency=low
 
   * Added dh_perl calls to example rules files.
index 1c1badeb2826627aeb65600da17d4564b804d171..47e2ced23ebb96ce00b573130546cf663b01f308 100755 (executable)
@@ -37,8 +37,8 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
                # extentions. ".gz", ".z", ".taz", ".tgz", "-gz", "-z", "_z"
                
                push @files, split(/\n/,`
-                       find usr/info usr/man usr/X11*/man -type f ! -name "*.gz" 2>/dev/null || true;
-                       find usr/doc -type f \\( -size +4k -or -name "changelog*" \\) \\
+                       find usr/info usr/share/info usr/man usr/share/man usr/X11*/man usr/share/X11*/man -type f ! -name "*.gz" 2>/dev/null || true;
+                       find usr/doc usr/share/doc -type f \\( -size +4k -or -name "changelog*" \\) \\
                                ! -name "*.htm*" ! -name "*.gif" ! -iname "*.gz" \\
                                ! -iname "*.taz" ! -iname "*.tgz" ! -iname "*.z" \\
                                ! -iname "*-gz" ! -iname "*-z" ! -iname "*_z" \\
index 77cd68f9069b31694b1a20fad55998895bcabff1..66f201221377b9d96dbc15a7a807f126c3a2fc55 100644 (file)
@@ -27,8 +27,8 @@ Here is a sample debian/compress file that causes dh_compress to compress
 the same files as it would by default. This is a good starting point for
 customization of what files are compressed:
 .PP
- find usr/info usr/man usr/X11*/man -type f
- find usr/doc -type f \\ 
+ find usr/info usr/share/info usr/man usr/share/man usr/X11*/man usr/share/X11*/man -type f
+ find usr/doc usr/share/doc -type f \\ 
        \\( -size +4k -or -name "changelog*" \\) \\
        ! -name "*.htm*" ! -name "*.gif" ! -iname "*.gz" \\
        ! -iname "*.taz" ! -iname "*.tgz" ! -iname "*.z" \\