diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-20 18:00:51 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-20 18:00:51 +0000 |
commit | 3e1734386054a8ec54a85ffcd4ba716b51a00cf9 (patch) | |
tree | 77bc5940d67dfcd2a16a1a4ed7e4d4794e5c5fd6 /bin | |
parent | 065b6e812b371e4894885e6d4a25173cf9b93eb3 (diff) | |
download | ATCD-3e1734386054a8ec54a85ffcd4ba716b51a00cf9.tar.gz |
ChangeLogTag:Tue Jan 20 11:57:24 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/auto_compile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/bin/auto_compile b/bin/auto_compile index fe85285fb66..1205ecc517a 100755 --- a/bin/auto_compile +++ b/bin/auto_compile @@ -35,7 +35,13 @@ $MODULE='ACE_wrappers'; # This are the sub-directories (in the module) we really compile. -@BUILD_LIST=('ace', 'tests'); +@BUILD_LIST= + ('ace', + 'tests', + 'TAO/tao', + 'TAO/TAO_IDL', + 'TAO/tests/Cubit/TAO', + 'TAO/orbsvcs'); # This are the pairs "sub-directory,script" we run. @@ -151,7 +157,7 @@ foreach $i (@BUILD_LIST) { || mydie "cannot start make for $i"; $make_errors = 0; while (<MAKE>) { - if (m/^make: \*\*\*/) { + if (m/^make: \*\*\*/ || m/^make\[[0-9]+\]: \*\*\*) { $make_errors = 1; } print LOG $_; |