summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild.sh2
-rwxr-xr-xbin/isolated-functions.sh2
-rwxr-xr-xbin/prepallman2
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 71437135..d1507d86 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -1480,7 +1480,7 @@ fi
#a reasonable default for $S
if [ "$S" = "" ]; then
- export S=${WORKDIR}/${P}
+ export S="${WORKDIR}/${P}"
fi
#wipe the interceptors. we don't want saved.
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh
index 1ac593ee..00f43d2d 100755
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -132,7 +132,7 @@ elog_base() {
return 1
;;
esac
- echo -e "$*" >> ${T}/logging/${EBUILD_PHASE:-other}.${messagetype}
+ echo -e "$*" >> "${T}/logging/${EBUILD_PHASE:-other}.${messagetype}"
return 0
}
diff --git a/bin/prepallman b/bin/prepallman
index 747ed1fa..7af1b160 100755
--- a/bin/prepallman
+++ b/bin/prepallman
@@ -9,7 +9,7 @@ ret=0
find "${D}" -type d -name man > "${T}"/prepallman.filelist
while read mandir ; do
- mandir=${mandir#${D}}
+ mandir="${mandir#${D}}"
prepman "${mandir%/man}"
((ret+=$?))
done < "${T}"/prepallman.filelist