summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2003-10-13 15:00:19 +0000
committerMike Frysinger <vapier@gentoo.org>2003-10-13 15:00:19 +0000
commit03a5b2b022ab771075149719bea8c14227e87f84 (patch)
tree504e1395f17ca5f90da02eee335bca196385729f /eclass/eutils.eclass
parentfixing manifest (diff)
downloadgentoo-2-03a5b2b022ab771075149719bea8c14227e87f84.tar.gz
gentoo-2-03a5b2b022ab771075149719bea8c14227e87f84.tar.bz2
gentoo-2-03a5b2b022ab771075149719bea8c14227e87f84.zip
fix expansion
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 bb39b94e89d5..b0e74f4bbded 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.62 2003/10/05 02:42:24 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.63 2003/10/13 15:00:19 vapier Exp $
#
# Author: Martin Schlemmer <azarah@gentoo.org>
#
@@ -998,7 +998,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}" == "${lic}" ] && return 0
done