diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2015-11-17 01:39:08 +0000 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2015-11-17 01:39:08 +0000 |
commit | b19b584579328cb0da57b8321bf5825bbfa28f1f (patch) | |
tree | 6e32c9d5c9104f13094f7eedb3124ba2580237b7 /profiles | |
parent | profiles: Move to headless-awt for dev-java/icedtea-bin and (diff) | |
download | portage-b19b584579328cb0da57b8321bf5825bbfa28f1f.tar.xz |
profiles/common: Fix expansion
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/common/profile.bashrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/profiles/common/profile.bashrc b/profiles/common/profile.bashrc index 6e6f3ece..ce00f6a0 100644 --- a/profiles/common/profile.bashrc +++ b/profiles/common/profile.bashrc @@ -74,7 +74,7 @@ function __drop-doc () { ) local _dir - for _dir in "${_DIRS[@]}" ; do + for _dir in ${_DIRS[@]} ; do if [[ ! -d "${_ed}/${_dir}" ]] ; then continue fi @@ -100,7 +100,7 @@ function __drop-unneeded () { ) local _path - for _path in "${_PATH[@]}" ; do + for _path in ${_PATH[@]} ; do if [[ ! -e "${_ed}/${_path}" ]] ; then continue fi |