From 032ca1de19656af352035f520e198fd183f17946 Mon Sep 17 00:00:00 2001 From: adilger Date: Wed, 23 Mar 2005 18:55:49 +0000 Subject: [PATCH] Branch: b1_4 Patch series verification scripts moved to build. --- lustre/scripts/clearpatches.sh | 12 ------------ lustre/scripts/confirmpatches.sh | 11 ----------- 2 files changed, 23 deletions(-) delete mode 100644 lustre/scripts/clearpatches.sh delete mode 100644 lustre/scripts/confirmpatches.sh diff --git a/lustre/scripts/clearpatches.sh b/lustre/scripts/clearpatches.sh deleted file mode 100644 index ee36ef8..0000000 --- a/lustre/scripts/clearpatches.sh +++ /dev/null @@ -1,12 +0,0 @@ -SERIESPATH=./series -PATCHESPATH=./patches -NOUSEPATH=./nousepatches - -mkdir -p $NOUSEPATH -for PATCH in `ls $PATCHESPATH` ; do - echo $PATCH - if ! grep -r $PATCH $SERIESPATH ; then - echo "$PATCH was not in use !" - mv $PATCHESPATH/$PATCH $NOUSEPATH - fi -done diff --git a/lustre/scripts/confirmpatches.sh b/lustre/scripts/confirmpatches.sh deleted file mode 100644 index 31e5d72..0000000 --- a/lustre/scripts/confirmpatches.sh +++ /dev/null @@ -1,11 +0,0 @@ -SERIESPATH=./series -PATCHESPATH=./patches -for SERIES in `ls $SERIESPATH` ; 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 -- 1.8.3.1