projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5b6000
)
Fix quoting for iteration over PROFILE_PATHS.
author
Zac Medico
<zmedico@gentoo.org>
Tue, 12 Aug 2008 22:40:13 +0000
(22:40 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Tue, 12 Aug 2008 22:40:13 +0000
(22:40 -0000)
svn path=/main/trunk/; revision=11404
bin/ebuild.sh
patch
|
blob
|
history
diff --git
a/bin/ebuild.sh
b/bin/ebuild.sh
index 8a0adf742a6e225d33395ed0569d982e6f0536ca..2a434ef7583b36446e63b9ad393fe1c3c683a402 100755
(executable)
--- a/
bin/ebuild.sh
+++ b/
bin/ebuild.sh
@@
-1514,7
+1514,7
@@
source_all_bashrcs() {
IFS=$'\n'
local path_array=($PROFILE_PATHS)
restore_IFS
- for x in
${path_array[@]}
; do
+ for x in
"${path_array[@]}"
; do
[ -f "${x}/profile.bashrc" ] && qa_source "${x}/profile.bashrc"
done