summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXyne <xyne@archlinux.ca>2016-02-20 16:02:31 +1000
committerAllan McRae <allan@archlinux.org>2016-02-26 15:18:43 +1000
commit8ff03868a37b1f9c447784ae2fd639a49e426399 (patch)
treec0d2f3d5ce2e6c8beca7e6237ee269177cff84d4
parent1a29744d0da8aa945b96b234574e0d5c80f13b62 (diff)
downloadpacman-8ff03868a37b1f9c447784ae2fd639a49e426399.tar.gz
pacman-8ff03868a37b1f9c447784ae2fd639a49e426399.zip
makepkg: Turn PACMAN_OPTS into an array
Avoid potential word expansion with future inclusions Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r--scripts/makepkg.sh.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index 5b4811f1..2efcc985 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -87,7 +87,7 @@ SPLITPKG=0
SOURCEONLY=0
VERIFYSOURCE=0
-PACMAN_OPTS=
+PACMAN_OPTS=()
shopt -s extglob
@@ -219,7 +219,7 @@ source_has_signatures() {
run_pacman() {
local cmd
if [[ $1 != -@(T|Qq) ]]; then
- cmd=("$PACMAN_PATH" $PACMAN_OPTS "$@")
+ cmd=("$PACMAN_PATH" "${PACMAN_OPTS[@]}" "$@")
else
cmd=("$PACMAN_PATH" "$@")
fi
@@ -1780,8 +1780,8 @@ while true; do
# Pacman Options
--asdeps) ASDEPS=1;;
--needed) NEEDED=1;;
- --noconfirm) PACMAN_OPTS+=" --noconfirm" ;;
- --noprogressbar) PACMAN_OPTS+=" --noprogressbar" ;;
+ --noconfirm) PACMAN_OPTS+=("--noconfirm") ;;
+ --noprogressbar) PACMAN_OPTS+=("--noprogressbar") ;;
# Makepkg Options
--allsource) SOURCEONLY=2 ;;
@@ -1800,7 +1800,7 @@ while true; do
-i|--install) INSTALL=1 ;;
--key) shift; GPGKEY=$1 ;;
-L|--log) LOGGING=1 ;;
- -m|--nocolor) USE_COLOR='n'; PACMAN_OPTS+=" --color never" ;;
+ -m|--nocolor) USE_COLOR='n'; PACMAN_OPTS+=("--color never") ;;
--noarchive) NOARCHIVE=1 ;;
--nocheck) RUN_CHECK='n' ;;
--noprepare) RUN_PREPARE='n' ;;