aboutsummaryrefslogtreecommitdiff
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/misc-functions.sh
parentemerge: fix --sync cvs error message (diff)
downloadportage-af19eb79093292db5e3bc9467f3cf0cd79c8513c.tar.gz
portage-af19eb79093292db5e3bc9467f3cf0cd79c8513c.tar.bz2
portage-af19eb79093292db5e3bc9467f3cf0cd79c8513c.zip
docompress, prepcompress: Add missing quotes.
Diffstat (limited to 'bin/misc-functions.sh')
-rwxr-xr-xbin/misc-functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index 46be5011c..e1e5df1fb 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -103,7 +103,7 @@ prepcompress() {
fi
done
for g in "${exclude[@]}"; do
- if [[ ${f} = ${g} || ${f} == "${g%/}"/* ]]; then
+ if [[ ${f} = "${g}" || ${f} == "${g%/}"/* ]]; then
unset include[i]
continue 2
fi