Lines Matching refs:patch
69 patch="${2}"
77 case "$patch" in
92 *.patch*)
95 echo "Unsupported file type for ${path}/${patch}, skipping";
102 echo "Applying $patch using ${type}: "
104 if [ ! -e "${path}/$patch" ] ; then
105 echo "Error: missing patch file ${path}/$patch"
108 existing="$(grep -E "/${patch}\$" ${builddir}/.applied_patches_list || true)"
110 echo "Error: duplicate filename '${patch}'"
113 echo " to be applied : ${path}/${patch}"
116 echo "${path}/${patch}" >> ${builddir}/.applied_patches_list
117 … ${uncomp} "${path}/$patch" | patch -g0 -p1 --no-backup-if-mismatch -d "${builddir}" -t -N $silent
119 echo "Patch failed! Please fix ${patch}!"