summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-25 00:34:18 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-25 00:34:18 +0000
commitdc86ae0c0d72f7a3b65bf5d329d73ffd409c37b3 (patch)
treedf7b69daa8b0339c294fdffd7761890541b3a44a
parentNote that --noreplace takes precedence over options such as --newuse. (diff)
downloadportage-multirepo-dc86ae0c0d72f7a3b65bf5d329d73ffd409c37b3.tar.gz
portage-multirepo-dc86ae0c0d72f7a3b65bf5d329d73ffd409c37b3.tar.bz2
portage-multirepo-dc86ae0c0d72f7a3b65bf5d329d73ffd409c37b3.zip
Remove unused tar_opts variable inside unpack(). Thanks to zong_sharo for
reporting. svn path=/main/trunk/; revision=13181
-rwxr-xr-xbin/ebuild.sh9
1 files changed, 4 insertions, 5 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 79db02cf..9ac89174 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -327,7 +327,6 @@ unpack() {
local x
local y
local myfail
- local tar_opts=""
local eapi=${EAPI:-0}
[ -z "$*" ] && die "Nothing passed to the 'unpack' command"
@@ -349,7 +348,7 @@ unpack() {
_unpack_tar() {
if [ "${y}" == "tar" ]; then
- $1 -dc "${srcdir}${x}" | tar xof - ${tar_opts}
+ $1 -dc "$srcdir$x" | tar xof -
assert "$myfail"
else
$1 -dc "${srcdir}${x}" > ${x%.*} || die "$myfail"
@@ -359,13 +358,13 @@ unpack() {
myfail="failure unpacking ${x}"
case "${x##*.}" in
tar)
- tar xof "${srcdir}${x}" ${tar_opts} || die "$myfail"
+ tar xof "$srcdir$x" || die "$myfail"
;;
tgz)
- tar xozf "${srcdir}${x}" ${tar_opts} || die "$myfail"
+ tar xozf "$srcdir$x" || die "$myfail"
;;
tbz|tbz2)
- bzip2 -dc "${srcdir}${x}" | tar xof - ${tar_opts}
+ bzip2 -dc "$srcdir$x" | tar xof -
assert "$myfail"
;;
ZIP|zip|jar)