summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2004-09-17 21:19:49 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2004-09-17 21:19:49 +0000
commit5b60847879068d5e53955805f2fb640a32c31e58 (patch)
tree3b7250aa88d4aff0955c5d453a10720736f95483 /eclass/eutils.eclass
parentMarking firefox-1.0_pre stable on x86 per security bug #63996 (diff)
downloadhistorical-5b60847879068d5e53955805f2fb640a32c31e58.tar.gz
historical-5b60847879068d5e53955805f2fb640a32c31e58.tar.bz2
historical-5b60847879068d5e53955805f2fb640a32c31e58.zip
Updated to support multiple licenses and closing bug #63803.
Diffstat (limited to 'eclass/eutils.eclass')
-rw-r--r--eclass/eutils.eclass4
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