diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-06-06 21:40:28 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-06-06 21:40:28 +0100 |
commit | 10e3aabd0e3e0accfc5cba9e7b06bf694512625f (patch) | |
tree | 7282f9514e821f650373f8dde70a36af84e8913b /eclass | |
parent | a52a3a626c1d57fc0b3dbf58e79a23e88c3dd4ff (diff) |
gentoo auto-resync : 06:06:2023 - 21:40:28
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/Manifest.gz | bin | 37815 -> 37818 bytes | |||
-rw-r--r-- | eclass/eapi8-dosym.eclass | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz Binary files differindex f04d6c33d618..e3c462a9f162 100644 --- a/eclass/Manifest.gz +++ b/eclass/Manifest.gz diff --git a/eclass/eapi8-dosym.eclass b/eclass/eapi8-dosym.eclass index 4e3977ef54cf..93b11dda7fd6 100644 --- a/eclass/eapi8-dosym.eclass +++ b/eclass/eapi8-dosym.eclass @@ -31,7 +31,7 @@ esac _dosym8_canonicalize() { local path slash i prev out IFS=/ - path=( $1 ) + read -r -d '' -a path <<< "$1" [[ $1 == /* ]] && slash=/ while true; do @@ -39,7 +39,7 @@ _dosym8_canonicalize() { # or as a special case, "/.." at the beginning of the path. # Also drop empty and "." path components as we go along. prev= - for i in ${!path[@]}; do + for i in "${!path[@]}"; do if [[ -z ${path[i]} || ${path[i]} == . ]]; then unset "path[i]" elif [[ ${path[i]} != .. ]]; then |