diff options
author | joey <joey> | 1999-09-11 20:13:25 +0000 |
---|---|---|
committer | joey <joey> | 1999-09-11 20:13:25 +0000 |
commit | 9d3fce399b4344e7a0453abcc90c1bf74bd6d10d (patch) | |
tree | 77a483786c5c2bd26d4ab91ce28b364ca1befa89 /dh_compress | |
parent | a115415a3f6d57cef2110490a9f7d0f0dc62d14c (diff) |
r272: * dh_compress: fixed #ARGV bug (again) Closes: #44853
Diffstat (limited to 'dh_compress')
-rwxr-xr-x | dh_compress | 2 |
1 files changed, 1 insertions, 1 deletions
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 |