diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-06-09 22:07:00 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-06-09 22:07:00 +0000 |
commit | 7a871e738773e7e79e47133228392311a539076b (patch) | |
tree | f921024649bbdf1af3c50243eaf45292dbd43b7e /app-text | |
parent | Version bump and remove older version. (diff) | |
download | gentoo-2-7a871e738773e7e79e47133228392311a539076b.tar.gz gentoo-2-7a871e738773e7e79e47133228392311a539076b.tar.bz2 gentoo-2-7a871e738773e7e79e47133228392311a539076b.zip |
Use `unpack` rather than `tar xf`.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/acroread/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/acroread/acroread-9.5.4.ebuild | 6 |
2 files changed, 6 insertions, 5 deletions
diff --git a/app-text/acroread/ChangeLog b/app-text/acroread/ChangeLog index e2840c31dddd..237adc9784b8 100644 --- a/app-text/acroread/ChangeLog +++ b/app-text/acroread/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/acroread # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/ChangeLog,v 1.194 2013/05/11 22:21:01 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/ChangeLog,v 1.195 2013/06/09 22:07:00 vapier Exp $ + + 09 Jun 2013; Mike Frysinger <vapier@gentoo.org> acroread-9.5.4.ebuild: + Use `unpack` rather than `tar xf`. 11 May 2013; Andreas K. Huettel <dilfridge@gentoo.org> acroread-9.5.4.ebuild: Mute warning about textrel, bug 465160 diff --git a/app-text/acroread/acroread-9.5.4.ebuild b/app-text/acroread/acroread-9.5.4.ebuild index 60e91f93ead9..2a9d7f1dd043 100644 --- a/app-text/acroread/acroread-9.5.4.ebuild +++ b/app-text/acroread/acroread-9.5.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-9.5.4.ebuild,v 1.3 2013/05/11 22:21:01 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-9.5.4.ebuild,v 1.4 2013/06/09 22:07:00 vapier Exp $ EAPI=5 @@ -86,10 +86,8 @@ pkg_setup() { src_unpack() { unpack ${A} - cd "${S}" - tar xf ILINXR.TAR || die "Failed to unpack ILINXR.TAR." - tar xf COMMON.TAR || die "Failed to unpack COMMON.TAR." + unpack ./ILINXR.TAR ./COMMON.TAR } src_prepare() { |