diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-12-13 03:28:05 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-12-13 03:28:05 +0000 |
commit | 091bc9ad011550aacc466cdccf32fd6d0ba8e835 (patch) | |
tree | daa279b9f9800204219d2d06dec1af309d586c5f | |
parent | e40a94aae6fd8515622d018cb1615875364819ea (diff) | |
download | portage-091bc9ad011550aacc466cdccf32fd6d0ba8e835.tar.gz portage-091bc9ad011550aacc466cdccf32fd6d0ba8e835.tar.bz2 portage-091bc9ad011550aacc466cdccf32fd6d0ba8e835.zip |
Combine 2 shift calls into one.v2.2_rc59
svn path=/main/trunk/; revision=15059
-rwxr-xr-x | bin/ebuild-helpers/ecompress | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/ebuild-helpers/ecompress b/bin/ebuild-helpers/ecompress index c6e0fc548..ecf362cea 100755 --- a/bin/ebuild-helpers/ecompress +++ b/bin/ebuild-helpers/ecompress @@ -26,8 +26,7 @@ fi # new_args: global array used to return revised arguments decompress_args() { local suffix=$1 binary=$2 - shift - shift + shift 2 # Initialize the global new_args array. new_args=() |