diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-28 04:21:50 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-28 04:21:50 +0000 |
commit | 9699d3ce81a4d9ee90e2239a2b948c839791d3c5 (patch) | |
tree | 9a256348d513adb737c7bacef37a2059e0f37c96 /libstdc++-v3/scripts | |
parent | cd134b72bea256ca85fad0f79387d2bb44dbb328 (diff) | |
download | gcc-9699d3ce81a4d9ee90e2239a2b948c839791d3c5.tar.gz |
2004-05-27 Jan Beulich <jbeulich@novell.com>
* scripts/create_testsuite_files: Tweak.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82354 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/scripts')
-rwxr-xr-x | libstdc++-v3/scripts/create_testsuite_files | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libstdc++-v3/scripts/create_testsuite_files b/libstdc++-v3/scripts/create_testsuite_files index 8e357898f7f..7ebcef5a010 100755 --- a/libstdc++-v3/scripts/create_testsuite_files +++ b/libstdc++-v3/scripts/create_testsuite_files @@ -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 |