diff options
author | 2011-10-05 12:32:41 +0000 | |
---|---|---|
committer | 2011-10-05 12:32:41 +0000 | |
commit | 05ef6a94e6c399b2637443c9df4f3e0bf4607742 (patch) | |
tree | dbe6cd268bfb689c7250c106597af5db1b31ca1b /www-plugins/adobe-flash | |
parent | Add ~x86-fbsd (diff) | |
download | gentoo-2-05ef6a94e6c399b2637443c9df4f3e0bf4607742.tar.gz gentoo-2-05ef6a94e6c399b2637443c9df4f3e0bf4607742.tar.bz2 gentoo-2-05ef6a94e6c399b2637443c9df4f3e0bf4607742.zip |
Unpack the uri properly, This was supposed to be in previous commit, dunno why it didn't get there.
(Portage version: 2.2.0_alpha60/cvs/Linux x86_64)
Diffstat (limited to 'www-plugins/adobe-flash')
-rw-r--r-- | www-plugins/adobe-flash/ChangeLog | 7 | ||||
-rw-r--r-- | www-plugins/adobe-flash/adobe-flash-11.0.1.152.ebuild | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/www-plugins/adobe-flash/ChangeLog b/www-plugins/adobe-flash/ChangeLog index af46dbd40206..fcd5139d11d0 100644 --- a/www-plugins/adobe-flash/ChangeLog +++ b/www-plugins/adobe-flash/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-plugins/adobe-flash # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.108 2011/10/05 08:21:48 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/ChangeLog,v 1.109 2011/10/05 12:32:41 scarabeus Exp $ + + 05 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org> + adobe-flash-11.0.1.152.ebuild: + Unpack the uri properly, This was supposed to be in previous commit, dunno + why it didn't get there. *adobe-flash-11.0.1.152 (05 Oct 2011) diff --git a/www-plugins/adobe-flash/adobe-flash-11.0.1.152.ebuild b/www-plugins/adobe-flash/adobe-flash-11.0.1.152.ebuild index bfe4e0a26e03..df5a46a63071 100644 --- a/www-plugins/adobe-flash/adobe-flash-11.0.1.152.ebuild +++ b/www-plugins/adobe-flash/adobe-flash-11.0.1.152.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.0.1.152.ebuild,v 1.1 2011/10/05 08:21:48 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/adobe-flash/adobe-flash-11.0.1.152.ebuild,v 1.2 2011/10/05 12:32:41 scarabeus Exp $ EAPI=4 inherit nsplugins multilib toolchain-funcs versionator @@ -94,8 +94,8 @@ src_unpack() { if [[ $amd64_32bit ]]; then # Since the 32-bit and 64-bit tarballs collide, put the 32-bit one # elsewhere: - local my_32b_src=${MY_32B_URI##*/} - local my_64b_src=${MY_64B_URI##*/} + local my_32b_src=${MY_32B_URI##*>} + local my_64b_src=${MY_64B_URI##*>} if [[ $native_install ]]; then unpack $my_64b_src fi |