2004-05-27 Jan Beulich * scripts/create_testsuite_files: Tweak. Index: scripts/create_testsuite_files =================================================================== RCS file: /cvs/gcc/gcc/libstdc++-v3/scripts/create_testsuite_files,v retrieving revision 1.3 diff -c -p -r1.3 create_testsuite_files *** scripts/create_testsuite_files 25 May 2004 17:53:00 -0000 1.3 --- scripts/create_testsuite_files 28 May 2004 03:54:28 -0000 *************** dlist=`echo [0-9][0-9]*` *** 35,44 **** for d in [a-z]*; do test -d $d && dlist="$dlist $d" done ! find $dlist -type f -name "*.cc" | sort > $tmp.1 ! if test ! -s "$tmp.1"; then ! find $dlist -type l -name "*.cc" | sort > $tmp.1 ! fi if test ! -s "$tmp.1"; then exit 1 fi --- 35,41 ---- for d in [a-z]*; do test -d $d && dlist="$dlist $d" done ! find $dlist "(" -type f -o -type l ")" -name "*.cc" | sort > $tmp.1 if test ! -s "$tmp.1"; then exit 1 fi