diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-27 01:48:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-27 01:48:01 +0000 |
commit | 5fe531ec958d0e16d303da75379316a016c94166 (patch) | |
tree | 7be0e1d4adbb02bb77bfcbb61bea68e1bc556bec /eclass/games.eclass | |
parent | avoid eclass recursion (diff) | |
download | historical-5fe531ec958d0e16d303da75379316a016c94166.tar.gz historical-5fe531ec958d0e16d303da75379316a016c94166.tar.bz2 historical-5fe531ec958d0e16d303da75379316a016c94166.zip |
unset GAMES_LIBDIR in games_get_libdir until everyone has converted off of GAMES_LIBDIR
Diffstat (limited to 'eclass/games.eclass')
-rw-r--r-- | eclass/games.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/games.eclass b/eclass/games.eclass index ead9e588b9ea..403220116693 100644 --- a/eclass/games.eclass +++ b/eclass/games.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.119 2007/03/27 01:08:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/games.eclass,v 1.120 2007/03/27 01:48:01 vapier Exp $ # devlist: {vapier,wolf31o2,mr_bones_}@gentoo.org -> games@gentoo.org # @@ -33,6 +33,8 @@ export GAMES_USER_DED=${GAMES_USER_DED:-games} export GAMES_GROUP=${GAMES_GROUP:-games} games_get_libdir() { + # once everything is converted over from legacy GAMES_LIBDIR, delete next line + unset GAMES_LIBDIR echo ${GAMES_LIBDIR:-${GAMES_PREFIX}/$(get_libdir)} } |