Home | History | Annotate | Download | only in tools

Lines Matching refs:PATCH

18 # Script used to patch a source directory from a series of patches
25 "Patch a target source directory with a series of patches taken
27 is found under <patches-dir>/subdir/foo.patch will be applied with
28 'patch -p1' in <src-dir>/subdir.
60 PATCHES=`(cd $PATCHES_DIR && find . -name "*.patch" | sort ) 2> /dev/null`
66 for PATCH in $PATCHES; do
67 PATCHDIR=`dirname $PATCH`
68 PATCHNAME=`basename $PATCH`
70 cd $SRC_DIR/$PATCHDIR && patch -p1 < $PATCHES_DIR/$PATCH
71 fail_panic "Patch failure with $PATCHES_DIR/$PATCH!! !! Please check your patches directory!"