Commit a9c70186 by Jan Beulich Committed by Benjamin Kosnik

create_testsuite_files: Tweak.


2004-05-27  Jan Beulich  <jbeulich@novell.com>

	* scripts/create_testsuite_files: Tweak.

From-SVN: r82354
parent cc212178
2004-05-27 Jan Beulich <jbeulich@novell.com>
* scripts/create_testsuite_files: Tweak.
2004-05-25 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/15489
......
......@@ -35,10 +35,7 @@ dlist=`echo [0-9][0-9]*`
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
find $dlist "(" -type f -o -type l ")" -name "*.cc" | sort > $tmp.1
if test ! -s "$tmp.1"; then
exit 1
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment