# Patches list formats (patches-list-*.html):
# LFS: a href="name.patch"
- # hugovil: A HREF "dir/subdir/subdir/name.patch
+ # hugovil: a href="dir/subdir/subdir/name.patch"
# We must search for a patch beginning with either a slash or a " to avoid
# the possibility of having another package name within a patch name:
# if patch = Mesalib-8.0.4-llvm-3.1-fixes-1.patch
# then we could erroneously try to download patch "llvm-3.1-fixes-1.patch"
local PATCHES_FOUND=$(cat ${PATCHES_LIST} | \
egrep "\"${PACK_URL}-|/${PACK_URL}-" | \
+ egrep ".patch\"" | \
sed "s/.*\(${PACK_URL}-.*\.patch\)\".*/\1/")
if [ -n "${PATCHES_FOUND}" ]; then