diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-22 19:50:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-01-22 19:50:19 +0000 |
commit | e8eaaeba55b2fe0f8318195a2e5d70db2bd78155 (patch) | |
tree | a5cfd65d6960344e6785a1969b924b5dd0b8df6d /eclass/games.eclass | |
parent | Sparc stable --- Bug #256007 --- 'All tests successful.' (diff) | |
download | gentoo-2-e8eaaeba55b2fe0f8318195a2e5d70db2bd78155.tar.gz gentoo-2-e8eaaeba55b2fe0f8318195a2e5d70db2bd78155.tar.bz2 gentoo-2-e8eaaeba55b2fe0f8318195a2e5d70db2bd78155.zip |
Avoid dying on newer libsdl which doesn't have the no* use flags anymore.
Diffstat (limited to 'eclass/games.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// / -}'" |