diff options
author | Mike Gilbert <floppym@gentoo.org> | 2011-10-15 17:48:13 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2011-10-15 17:48:13 +0000 |
commit | 6a240ee45675803a262161a5967ccbb902907897 (patch) | |
tree | 60f4ff8d85527ec42164edbcba7fe99384795ebe /dev-lang/v8/v8-9999.ebuild | |
parent | Initial package based on #229855 by Maciej Blizinski. (diff) | |
download | gentoo-2-6a240ee45675803a262161a5967ccbb902907897.tar.gz gentoo-2-6a240ee45675803a262161a5967ccbb902907897.tar.bz2 gentoo-2-6a240ee45675803a262161a5967ccbb902907897.zip |
Disable snapshot based on host-is-pax. Bug 387185 by ago.
(Portage version: 2.2.0_alpha67/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/v8/v8-9999.ebuild')
-rw-r--r-- | dev-lang/v8/v8-9999.ebuild | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/dev-lang/v8/v8-9999.ebuild b/dev-lang/v8/v8-9999.ebuild index 5ecca25a94d0..50e0ed0e813e 100644 --- a/dev-lang/v8/v8-9999.ebuild +++ b/dev-lang/v8/v8-9999.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/dev-lang/v8/v8-9999.ebuild,v 1.14 2011/10/13 02:17:14 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.15 2011/10/15 17:48:13 floppym Exp $ EAPI="3" @@ -57,7 +57,18 @@ src_compile() { else soname_version="${PV}" fi - emake V=1 library=shared werror=no console=${console} soname_version=${soname_version} ${mytarget} || die + + local snapshot=on + host-is-pax && snapshot=off + + emake V=1 \ + library=shared \ + werror=no \ + console=${console} \ + soname_version=${soname_version} \ + snapshot=${snapshot} \ + ${mytarget} || die + pax-mark m out/${mytarget}/{cctest,d8,shell} || die } |