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

index 61d807afc06fb798df705fef285c95d116d7b1d3..fb02a5dd8aed3dab4d66141b4ff458c2a344969a 100644 (file)
--- a/Dh_Lib.pm
+++ b/Dh_Lib.pm
@@ -60,7 +60,7 @@ sub init {
                if ($dh{DOINDEP} || $dh{DOARCH} || $dh{DOSAME}) {
                        # User specified that all arch (in)dep package be 
                        # built, and there are none of that type.
-                       error("I have no package to build");
+                       error("I have no package to act on");
                }
                push @{$dh{DOPACKAGES}},@allpackages;
        }
index f0c1a5d7178befeb2c4ea0300201827b1183a038..993f0fa732aad771be5d8fbb07a2213c856a30b1 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (1.2.18) unstable; urgency=medium
+
+  * dh_fixperms: was not fixing permissions of files in usr/doc/ to 644,
+    this has been broken since version 1.2.3.
+
+ -- Joey Hess <joeyh@master.debian.org>  Sun,  6 Dec 1998 23:35:35 -0800
+
 debhelper (1.2.17) unstable; urgency=low
 
   * dh_makeshlibs: relaxed regexp to find library name and number a little so
index e7e1ec6aa0cae8b3d2adb7b9e91f2fb0a8cee768..7f047fbdb7b2469db08ebba0de0b649721b55fb2 100755 (executable)
@@ -35,7 +35,7 @@ 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/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",
                "2>/dev/null | xargs -0r chmod 755");