diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-09-28 18:54:44 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-09-28 18:54:44 +0000 |
commit | 41ce0644fb3bb06db8dbfaaac06f6255de12db31 (patch) | |
tree | bbcbbe8277bfacf0084dafc57d0dfba895739be2 /dev-libs/glib | |
parent | stable ppc, bug #433307 (diff) | |
download | gentoo-2-41ce0644fb3bb06db8dbfaaac06f6255de12db31.tar.gz gentoo-2-41ce0644fb3bb06db8dbfaaac06f6255de12db31.tar.bz2 gentoo-2-41ce0644fb3bb06db8dbfaaac06f6255de12db31.zip |
Really disable building tests when USE=-test (bug #436508, thanks to Jeff Kowalczyk).
(Portage version: 2.2.0_alpha132/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/glib')
-rw-r--r-- | dev-libs/glib/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/glib/glib-2.34.0.ebuild | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/dev-libs/glib/ChangeLog b/dev-libs/glib/ChangeLog index 9c92ededc394..151fc651e3f2 100644 --- a/dev-libs/glib/ChangeLog +++ b/dev-libs/glib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/glib # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.535 2012/09/27 03:16:29 mattst88 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.536 2012/09/28 18:54:44 tetromino Exp $ + + 28 Sep 2012; Alexandre Rostovtsev <tetromino@gentoo.org> glib-2.34.0.ebuild: + Really disable building tests when USE=-test (bug #436508, thanks to Jeff + Kowalczyk). 26 Sep 2012; Matt Turner <mattst88@gentoo.org> glib-2.32.4.ebuild: Stable on alpha, bug 427544. diff --git a/dev-libs/glib/glib-2.34.0.ebuild b/dev-libs/glib/glib-2.34.0.ebuild index d667bae83edf..66139fce6847 100644 --- a/dev-libs/glib/glib-2.34.0.ebuild +++ b/dev-libs/glib/glib-2.34.0.ebuild @@ -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/dev-libs/glib/glib-2.34.0.ebuild,v 1.1 2012/09/25 11:40:57 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.34.0.ebuild,v 1.2 2012/09/28 18:54:44 tetromino Exp $ EAPI="4" PYTHON_DEPEND="utils? 2" @@ -145,6 +145,8 @@ src_configure() { # need to build tests if USE=doc for bug #387385 if use doc || use test; then myconf="${myconf} --enable-modular-tests" + else + myconf="${myconf} --disable-modular-tests" fi # Always use internal libpcre, bug #254659 |