aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-05-19 16:18:31 +0000
committerUlrich Müller <ulm@gentoo.org>2009-05-19 16:18:31 +0000
commit1c593837f22050c2b147c316183e7ff2c660b448 (patch)
tree09825734d2082579d5b3b3f7d7fb0569622ee6ce /libs/core.bash.in
parentRename paludis wrapper to run_paludis to prevent infinite loop, bug 270406. (diff)
downloadeselect-1c593837f22050c2b147c316183e7ff2c660b448.tar.gz
eselect-1c593837f22050c2b147c316183e7ff2c660b448.tar.bz2
eselect-1c593837f22050c2b147c316183e7ff2c660b448.zip
Quote arguments of inherit.
svn path=/trunk/; revision=548
Diffstat (limited to 'libs/core.bash.in')
-rw-r--r--libs/core.bash.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/core.bash.in b/libs/core.bash.in
index d0ee46a..a55ce69 100644
--- a/libs/core.bash.in
+++ b/libs/core.bash.in
@@ -95,7 +95,7 @@ do_action() {
# Sources a given eselect library file
inherit() {
local x
- for x in ${@} ; do
+ for x in "$@"; do
[[ -e "${ESELECT_CORE_PATH}/${x}.bash" ]] \
|| die "Couldn't find ${x}.bash"
source "${ESELECT_CORE_PATH}/${x}.bash" \