diff options
author | 2009-01-22 19:50:19 +0000 | |
---|---|---|
committer | 2009-01-22 19:50:19 +0000 | |
commit | 63395f681e84f17958547e6f464c90fc8d091c85 (patch) | |
tree | 7d6d5e8f3ef951fa7dd5215e1c94b2f438879230 /eclass | |
parent | Sparc stable --- Bug #256007 --- 'All tests successful.' (diff) | |
download | historical-63395f681e84f17958547e6f464c90fc8d091c85.tar.gz historical-63395f681e84f17958547e6f464c90fc8d091c85.tar.bz2 historical-63395f681e84f17958547e6f464c90fc8d091c85.zip |
Avoid dying on newer libsdl which doesn't have the no* use flags anymore.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/games.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index 435c6876b367..488ba9e3af6d 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.131 2009/01/21 19:03:53 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.132 2009/01/22 19:50:19 mr_bones_ Exp $ # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -118,7 +118,7 @@ games_pkg_setup() { # Make sure SDL was built in a certain way if [[ -n ${GAMES_USE_SDL} ]] ; then - if built_with_use -o media-libs/libsdl ${GAMES_USE_SDL} ; then + if built_with_use --missing false -o media-libs/libsdl ${GAMES_USE_SDL} ; then eerror "You built libsdl with wrong USE flags." eerror "Make sure you rebuild it like this:" eerror "USE='-${GAMES_USE_SDL// / -}'" |