xbps-src: quote $wrksrc

Allows spaces in the directory name
This commit is contained in:
beefcurtains 2015-07-29 08:17:37 +00:00
parent 9c34767b3e
commit 3c424a73f6
5 changed files with 11 additions and 11 deletions

View file

@ -10,14 +10,14 @@ _process_patch() {
elif [ -n "$patch_args" ]; then
_args=$patch_args
fi
cp -f $i $wrksrc
cp -f $i "$wrksrc"
# Try to guess if its a compressed patch.
if [[ $f =~ .gz$ ]]; then
gunzip $wrksrc/${_patch}
gunzip "$wrksrc/${_patch}"
_patch=${_patch%%.gz}
elif [[ $f =~ .bz2$ ]]; then
bunzip2 $wrksrc/${_patch}
bunzip2 "$wrksrc/${_patch}"
_patch=${_patch%%.bz2}
elif [[ $f =~ .diff ]]; then
:
@ -28,7 +28,7 @@ _process_patch() {
continue
fi
cd $wrksrc
cd "$wrksrc"
patch -sl ${_args} -i ${_patch} 2>/dev/null
msg_normal "$pkgver: patch applied: ${_patch}.\n"
}