diff options
author | 2004-09-17 21:19:49 +0000 | |
---|---|---|
committer | 2004-09-17 21:19:49 +0000 | |
commit | 911d84c7de1e4098164d8385acae8373556f5537 (patch) | |
tree | 3bbbf027095f296e9c02c293640cefef70b23426 /eclass | |
parent | Marking firefox-1.0_pre stable on x86 per security bug #63996 (Manifest recom... (diff) | |
download | gentoo-2-911d84c7de1e4098164d8385acae8373556f5537.tar.gz gentoo-2-911d84c7de1e4098164d8385acae8373556f5537.tar.bz2 gentoo-2-911d84c7de1e4098164d8385acae8373556f5537.zip |
Updated to support multiple licenses and closing bug #63803.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 2d3a86df1a2c..25f99c3b0e25 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.103 2004/09/17 10:37:58 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.104 2004/09/17 21:19:49 wolf31o2 Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -1132,7 +1132,7 @@ check_license() { # here is where we check for the licenses the user already # accepted ... if we don't find a match, we make the user accept local alic - for alic in "${ACCEPT_LICENSE}" ; do + for alic in ${ACCEPT_LICENSE} ; do [ "${alic}" == "*" ] && return 0 [ "${alic}" == "${l}" ] && return 0 done |