Skip to content
Snippets Groups Projects
Commit 85be04a5 authored by Andreas Dilger's avatar Andreas Dilger
Browse files

Branch: HEAD

Move clearpatches.sh and confirmpatches.sh into build from lustre-core.
parent 3c1dbbd7
No related branches found
No related tags found
No related merge requests found
SERIESPATH=./series
PATCHESPATH=./patches
NOUSEPATH=./nousepatches
#mkdir -p $NOUSEPATH
for PATCH in `ls $PATCHESPATH | grep -v CVS` ; do
#echo $PATCH
if ! grep -rq $PATCH $SERIESPATH ; then
echo "$PATCH"
#mv $PATCHESPATH/$PATCH $NOUSEPATH
fi
done
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment