summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/auto_compile10
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 $_;