re PR bootstrap/16469 (bootstrap fails in libstdc++-v3/testsuite)

PR bootstrap/16469
	* scripts/create_testsuite_files: Pass -print to find.

From-SVN: r84875
This commit is contained in:
Richard Sandiford 2004-07-17 18:12:42 +00:00 committed by Richard Sandiford
parent 6e456a1054
commit 46d4fde7e2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-07-17 Richard Sandiford <rsandifo@redhat.com>
PR bootstrap/16469
* scripts/create_testsuite_files: Pass -print to find.
2004-07-15 Paolo Carlini <pcarlini@suse.de>
* docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 30.

View File

@ -35,7 +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 -o -type l ")" -name "*.cc" | sort > $tmp.1
find $dlist "(" -type f -o -type l ")" -name "*.cc" -print | sort > $tmp.1
if test ! -s "$tmp.1"; then
exit 1
fi