abuild.in: fix dealing with named remote patches (closes github #11)

for patches like:
patchname.patch::http://github/.../commit/<md5hash>.patch

use strict filename instead of the whole line
This commit is contained in:
Valery Kartel 2017-01-12 16:36:41 +02:00 committed by William Pitcock
parent 0ff2cf73f5
commit 89d62e9d4d
1 changed files with 4 additions and 4 deletions

View File

@ -556,7 +556,7 @@ getpkgver() {
have_patches() {
local i
for i in $source; do
case "$i" in
case ${i%::*} in
*.patch) return 0;;
esac
done
@ -570,10 +570,10 @@ default_prepare() {
return 0
fi
for i in $source; do
case $i in
case ${i%::*} in
*.patch)
msg "$i"
patch "${patch_args:--p1}" -i "$srcdir/$i" || return 1
msg "${i%::*}"
patch "${patch_args:--p1}" -i "$srcdir/${i%::*}" || return 1
;;
esac
done