diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-03-25 00:34:18 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-03-25 00:34:18 +0000 |
commit | dc86ae0c0d72f7a3b65bf5d329d73ffd409c37b3 (patch) | |
tree | df7b69daa8b0339c294fdffd7761890541b3a44a | |
parent | bbe131fb3fb88c26efbc63e79f205a89d6b499ca (diff) | |
download | portage-dc86ae0c0d72f7a3b65bf5d329d73ffd409c37b3.tar.gz portage-dc86ae0c0d72f7a3b65bf5d329d73ffd409c37b3.tar.bz2 portage-dc86ae0c0d72f7a3b65bf5d329d73ffd409c37b3.zip |
Remove unused tar_opts variable inside unpack(). Thanks to zong_sharo for
reporting.
svn path=/main/trunk/; revision=13181
-rwxr-xr-x | bin/ebuild.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 79db02cf3..9ac89174f 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) |