]> git.donarmstrong.com Git - debhelper.git/commitdiff
r467: * dh_installinfo: doc enchancement, Closes: #97515
authorjoey <joey>
Tue, 15 May 2001 01:28:29 +0000 (01:28 +0000)
committerjoey <joey>
Tue, 15 May 2001 01:28:29 +0000 (01:28 +0000)
   * dh_md5sums: don't fail if pwd has spaces in it (must be scraping the
     bottom of the bug barrel here). Closes: #97404

debian/changelog
dh_compress
dh_installinfo
dh_md5sums

index fc067da6af1ff4e4f1cc4a76389e3f18ce489cb6..0158f610a7583f1e5c2f8c2d5eb2944f85dd3295 100644 (file)
@@ -1,3 +1,11 @@
+debhelper (3.0.22) unstable; urgency=low
+
+  * dh_installinfo: doc enchancement, Closes: #97515
+  * dh_md5sums: don't fail if pwd has spaces in it (must be scraping the
+    bottom of the bug barrel here). Closes: #97404
+
+ -- Joey Hess <joeyh@debian.org>  Mon, 14 May 2001 21:22:47 -0400
+
 debhelper (3.0.21) unstable; urgency=low
 
   * Corrected bashism (echo -e, DAMNIT), in rules file that resulted in a
index 0795cbbc4ef959a2b021e893ac1138110ad3d209..c90ce637668fafb751fc09879243a1e6fecb7b13 100755 (executable)
@@ -160,7 +160,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                doit("ln","$hardlinks{$_}.gz","$_.gz");
        }
 
-       verbose_print("cd $olddir");
+       verbose_print("cd '$olddir'");
        chdir($olddir);
 
        # Fix up symlinks that were pointing to the uncompressed files.
index 41446fdd8854af83f6e75b1c4acf32102a8477ef..1fde4c53273beea88cf55391284d29f6e42237fa 100755 (executable)
@@ -18,6 +18,10 @@ use Debian::Debhelper::Dh_Lib;
 dh_installinfo is a debhelper program that is responsible for installing
 info files and registering them with install-info.
 
+It determines some information about the info files by parsing them, in
+particular, it looks at the INFO-DIR-SECTION line to determine what section
+the info file belongs in.
+
 Any filenames specified as parameters will be installed into the first
 package dh_installinfo is told to act on. By default, this is the first
 binary package in debian/control, but if you use -p, -i, or -a flags, it
index 51bd54c807e5848540505a2a485a839317f89033..992de40dc9e448890460957477963a847b6333dc 100755 (executable)
@@ -70,7 +70,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
        }
        
        my $olddir=getcwd();
-       complex_doit("cd $tmp >/dev/null ; find * -type f $exclude ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums ; cd $olddir >/dev/null");
+       complex_doit("cd $tmp >/dev/null ; find * -type f $exclude ! -regex '^DEBIAN/.*' -print0 | xargs -r0 md5sum > DEBIAN/md5sums ; cd '$olddir' >/dev/null");
        # If the file's empty, no reason to waste inodes on it.
        if (-z "$tmp/DEBIAN/md5sums") {
                doit("rm","-f","$tmp/DEBIAN/md5sums");