X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=build%2Fconfirmpatches.sh;fp=build%2Fconfirmpatches.sh;h=18016c6bf6a82db47d3a6c5b2c088f4df010f073;hp=0000000000000000000000000000000000000000;hb=85be04a556acc0d0cd83de7579c81d73a8f449db;hpb=3c1dbbd796011db6574dffc02d99ad8f44b67923 diff --git a/build/confirmpatches.sh b/build/confirmpatches.sh new file mode 100644 index 0000000..18016c6 --- /dev/null +++ b/build/confirmpatches.sh @@ -0,0 +1,11 @@ +SERIESPATH=./series +PATCHESPATH=./patches +for SERIES in `ls $SERIESPATH | grep -v CVS` ; do + #echo $SERIES + for PATCH in `cat $SERIESPATH/$SERIES`; do + #echo $PATCH + if [ ! `find $PATCHESPATH -name $PATCH` ]; then + echo "$SERIESPATH/$SERIES: patch $PATCH was not found !" + fi + done +done