diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-10-10 15:37:05 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-10-10 15:37:05 +0000 |
commit | d4afac15111c20ae11f0f5a77a09384a64a73c95 (patch) | |
tree | 52ceb156fc9708f03910c92a14374eebb9f6180d /dev-libs/libyaml | |
parent | Marking postfix-2.9.4 ppc for bug 437602 (diff) | |
download | gentoo-2-d4afac15111c20ae11f0f5a77a09384a64a73c95.tar.gz gentoo-2-d4afac15111c20ae11f0f5a77a09384a64a73c95.tar.bz2 gentoo-2-d4afac15111c20ae11f0f5a77a09384a64a73c95.zip |
Invert USE=test logic. Sed must die() (bug #421611).
(Portage version: 2.2.0_alpha136/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libyaml')
-rw-r--r-- | dev-libs/libyaml/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libyaml/libyaml-0.1.4.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/dev-libs/libyaml/ChangeLog b/dev-libs/libyaml/ChangeLog index 6306311c061b..653658254b51 100644 --- a/dev-libs/libyaml/ChangeLog +++ b/dev-libs/libyaml/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libyaml # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.29 2012/09/30 18:28:32 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/ChangeLog,v 1.30 2012/10/10 15:37:05 jer Exp $ + + 10 Oct 2012; Jeroen Roovers <jer@gentoo.org> libyaml-0.1.4.ebuild: + Invert USE=test logic. Sed must die() (bug #421611). 30 Sep 2012; Raúl Porcel <armin76@gentoo.org> libyaml-0.1.4.ebuild: alpha/s390/sh/sparc stable wrt #421611 diff --git a/dev-libs/libyaml/libyaml-0.1.4.ebuild b/dev-libs/libyaml/libyaml-0.1.4.ebuild index a72781969686..d1b21f14024b 100644 --- a/dev-libs/libyaml/libyaml-0.1.4.ebuild +++ b/dev-libs/libyaml/libyaml-0.1.4.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.11 2012/09/30 18:28:32 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.1.4.ebuild,v 1.12 2012/10/10 15:37:05 jer Exp $ EAPI=4 -inherit eutils autotools-utils +inherit autotools-utils eutils MY_P="${P/lib}" @@ -23,8 +23,8 @@ DOCS="README" src_prepare() { # conditionally remove tests - if use test; then - sed -i -e 's: tests::g' Makefile* + if ! use test; then + sed -i -e 's: tests::g' Makefile* || die fi } |