Procházet zdrojové kódy

Use gzip -c in install-info

Wichert Akkerman před 24 roky
rodič
revize
b4cbdc964c
3 změnil soubory, kde provedl 6 přidání a 1 odebrání
  1. 4 0
      ChangeLog
  2. 1 0
      debian/changelog
  3. 1 1
      scripts/install-info.pl

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+Thu Jan 31 21:34:14 CET 2002 Wichert Akkerman <wakkerma@debian.org>
+
+  * scripts/install-info.pl: add -c option to gzip invocation
+
 Thu Jan 31 14:56:38 CET 2002 Wichert Akkerman <wakkerma@debian.org>
 
   * doc/fr/install-info.8, doc/fr/update-alternatives.8: udpated with

+ 1 - 0
debian/changelog

@@ -72,6 +72,7 @@ dpkg (1.10) unstable; urgency=low
   * Fix typo in start-stop-daemon help message. Closes: Bug#131439
   * update-alternative exits with a non-zero exit code when displaying
     a non-existing alternative. Closes: Bug#131496
+  * Use gzip -c in install-info. Closes: Bug#131758
 
  -- Wichert Akkerman <wakkerma@debian.org>  Mon, 20 Aug 2001 14:54:38 +0200
 

+ 1 - 1
scripts/install-info.pl

@@ -124,7 +124,7 @@ my $fileinentry;
 if (!$remove) {
 
     if (!-f $filename && -f "$filename.gz" || $filename =~ s/\.gz$//) {
-        $filename= "gzip -d <$filename.gz |";  $pipeit= 1;
+        $filename= "gzip -cd <$filename.gz |";  $pipeit= 1;
     } else {
         $filename= "< $filename";
     }