summaryrefslogtreecommitdiffstats
path: root/bin/ebuild.sh
diff options
context:
space:
mode:
authorUlrich Mueller <ulm@gentoo.org>2011-02-19 00:42:36 +0100
committerUlrich Mueller <ulm@gentoo.org>2011-02-19 00:45:01 +0100
commitaf19eb79093292db5e3bc9467f3cf0cd79c8513c (patch)
tree7667e2d1520c94914c1f94d56352b772c576ef84 /bin/ebuild.sh
parentc5643d73d1db4d40207d68993811d4d193089a57 (diff)
downloadportage-af19eb79093292db5e3bc9467f3cf0cd79c8513c.tar.gz
portage-af19eb79093292db5e3bc9467f3cf0cd79c8513c.tar.bz2
portage-af19eb79093292db5e3bc9467f3cf0cd79c8513c.zip
docompress, prepcompress: Add missing quotes.
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index ebe2c65d3..d0cf84d1e 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -916,7 +916,7 @@ docompress() {
f=$(strip_duplicate_slashes "${f}"); f=${f%/}
[[ ${f:0:1} = / ]] || f="/${f}"
for g in "${PORTAGE_DOCOMPRESS_SKIP[@]}"; do
- [[ ${f} = ${g} ]] && continue 2
+ [[ ${f} = "${g}" ]] && continue 2
done
PORTAGE_DOCOMPRESS_SKIP[${#PORTAGE_DOCOMPRESS_SKIP[@]}]=${f}
done
@@ -925,7 +925,7 @@ docompress() {
f=$(strip_duplicate_slashes "${f}"); f=${f%/}
[[ ${f:0:1} = / ]] || f="/${f}"
for g in "${PORTAGE_DOCOMPRESS[@]}"; do
- [[ ${f} = ${g} ]] && continue 2
+ [[ ${f} = "${g}" ]] && continue 2
done
PORTAGE_DOCOMPRESS[${#PORTAGE_DOCOMPRESS[@]}]=${f}
done