8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 01:23:03 +01:00

Make it work with new CVS version

This commit is contained in:
alexpeshkoff 2009-07-30 09:19:14 +00:00
parent 41eb20c5a2
commit fd2121cdf5

View File

@ -31,7 +31,10 @@
# Determine root of local checkout
SRCROOT=`dirname $0`/../..
MODULE=$SRCROOT/temp/src
MEMBERS=`awk -F / <$SRCROOT/CVS/Entries '{print $2;}'`
MEMBERS=''
for m in `cat $SRCROOT/CVS/Entries* | awk -F / '{print $2;}' | sort | uniq`; do
[ -e $SRCROOT/$m ] && MEMBERS="$MEMBERS $m"
done
# Cleanup
rm -rf $MODULE