diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-02-05 05:57:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-02-05 05:57:19 +0000 |
commit | 18454eb0c757d14dd7811b19230528a4d8639c0f (patch) | |
tree | d00604fb853b9810acab704df3dc918b1c6e65e5 /eclass/unpacker.eclass | |
parent | Move to new unpacker eclass for unpack_makeself. (diff) | |
download | historical-18454eb0c757d14dd7811b19230528a4d8639c0f.tar.gz historical-18454eb0c757d14dd7811b19230528a4d8639c0f.tar.bz2 historical-18454eb0c757d14dd7811b19230528a4d8639c0f.zip |
pass original argument to portage `unpack` since our local $a is the full path (including DISTDIR) which portage does not want
Diffstat (limited to 'eclass/unpacker.eclass')
-rw-r--r-- | eclass/unpacker.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass index e48257d552c7..1a1763ba4ff7 100644 --- a/eclass/unpacker.eclass +++ b/eclass/unpacker.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.2 2012/02/05 05:48:00 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.3 2012/02/05 05:57:19 vapier Exp $ # @ECLASS: unpacker.eclass # @MAINTAINER: @@ -298,7 +298,7 @@ _unpacker() { # finally do the unpack if [[ -z ${arch}${comp} ]] ; then - unpack "${a}" + unpack "$1" return $? fi |