From b9445c12cf9e958d8e62f9f9ecb5c1352010cdf4 Mon Sep 17 00:00:00 2001 From: Xavier Chantry Date: Sun, 15 Jun 2008 12:10:31 +0200 Subject: makepkg: Add missing quotes for the source array. Now makepkg can handle filenames with whitespaces in the source array. Signed-off-by: Xavier Chantry Signed-off-by: Dan McGee --- scripts/makepkg.sh.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 998c768d..438335ec 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -428,7 +428,7 @@ download_sources() { pushd "$SRCDEST" &>/dev/null local netfile - for netfile in ${source[@]}; do + for netfile in "${source[@]}"; do local file=$(strip_url "$netfile") if [ -f "$startdir/$file" ]; then msg2 "$(gettext "Found %s in build dir")" "$file" @@ -501,7 +501,7 @@ generate_checksums() { done local netfile - for netfile in ${source[@]}; do + for netfile in "${source[@]}"; do local file="$(strip_url "$netfile")" if [ ! -f "$file" ] ; then @@ -956,9 +956,9 @@ create_srcpackage() { fi local netfile - for netfile in ${source[@]}; do + for netfile in "${source[@]}"; do local file=$(strip_url "$netfile") - if [ -f $netfile ]; then + if [ -f "$netfile" ]; then msg2 "$(gettext "Adding %s...")" "$netfile" ln -s $netfile ${srclinks}/${pkgname} elif [ "$SOURCEONLY" = "2" -a -f "$SRCDEST/$file" ]; then -- cgit v1.2.3-24-g4f1b