Lines Matching refs:path
68 path="${1%%/}"
70 case "${path}" in
72 *) path="$PWD/${path}";;
95 echo "Unsupported file type for ${path}/${patch}, skipping";
104 if [ ! -e "${path}/$patch" ] ; then
105 echo "Error: missing patch file ${path}/$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
125 local path=$1
131 if [ -e "${path}/series" ] ; then
139 apply_patch "$path" "$i" series
142 for i in `cd $path; ls -d $patches 2> /dev/null` ; do
143 if [ -d "${path}/$i" ] ; then
144 scan_patchdir "${path}/$i"
149 ${TAR} -C "$unpackedarchivedir" -xaf "${path}/$i"
152 apply_patch "$path" "$i"