summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2014-08-18 08:56:06 +0000
committerMichał Górny <mgorny@gentoo.org>2014-08-18 08:56:06 +0000
commit8376ee14605f7f87927002515df3218788612a7f (patch)
treecd4e428dd61169e9c8e7c3fd58ab72c073a9f9d8 /eclass
parentrework dconf sed operation (diff)
downloadgentoo-2-8376ee14605f7f87927002515df3218788612a7f.tar.gz
gentoo-2-8376ee14605f7f87927002515df3218788612a7f.tar.bz2
gentoo-2-8376ee14605f7f87927002515df3218788612a7f.zip
Add extra quoting to prevent accidental globbing.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/python-r1.eclass8
2 files changed, 8 insertions, 5 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 0cdd9a04b45b..bd8222c3b19a 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1353 2014/08/17 22:50:23 grknight Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1354 2014/08/18 08:56:06 mgorny Exp $
+
+ 18 Aug 2014; Michał Górny <mgorny@gentoo.org> python-r1.eclass:
+ Add extra quoting to prevent accidental globbing.
18 Aug 2014; Brian Evans <grknight@gentoo.org> mysql-multilib.eclass:
Move ENABLE_DTRACE check to the multilib_src_configure wrt bug 520028
diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass
index 4e4e047519c9..e127f5d94519 100644
--- a/eclass/python-r1.eclass
+++ b/eclass/python-r1.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.75 2014/07/06 14:41:17 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python-r1.eclass,v 1.76 2014/08/18 08:56:06 mgorny Exp $
# @ECLASS: python-r1
# @MAINTAINER:
@@ -293,7 +293,7 @@ python_gen_usedep() {
[[ ${matches[@]} ]] || die "No supported implementations match python_gen_usedep patterns: ${@}"
local out=${matches[@]}
- echo ${out// /,}
+ echo "${out// /,}"
}
# @FUNCTION: python_gen_useflags
@@ -330,7 +330,7 @@ python_gen_useflags() {
done
done
- echo ${matches[@]}
+ echo "${matches[@]}"
}
# @FUNCTION: python_gen_cond_dep
@@ -387,7 +387,7 @@ python_gen_cond_dep() {
done
done
- echo ${matches[@]}
+ echo "${matches[@]}"
}
# @ECLASS-VARIABLE: BUILD_DIR