From: joey Date: Sat, 11 Sep 1999 20:13:25 +0000 (+0000) Subject: r272: * dh_compress: fixed #ARGV bug (again) Closes: #44853 X-Git-Tag: version_2.0.101~326 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9d3fce399b4344e7a0453abcc90c1bf74bd6d10d;p=debhelper.git r272: * dh_compress: fixed #ARGV bug (again) Closes: #44853 --- diff --git a/debian/changelog b/debian/changelog index 5005009..a770e73 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (2.0.44) unstable; urgency=low + + * dh_compress: fixed #ARGV bug (again) Closes: #44853 + + -- Joey Hess Sat, 11 Sep 1999 13:04:15 -0700 + debhelper (2.0.43) unstable; urgency=low * Corrected example rules files, which had some messed up targets. diff --git a/dh_compress b/dh_compress index 847bcb6..1312bf4 100755 --- a/dh_compress +++ b/dh_compress @@ -22,7 +22,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { @files=(); # First of all, deal with any files specified right on the command line. if (($PACKAGE eq $dh{FIRSTPACKAGE} || $dh{PARAMS_ALL}) && @ARGV) { - push @files,#ARGV; + push @files, @ARGV; } if ($compress) { # The config file is a sh script that outputs the files to be compressed