summaryrefslogtreecommitdiff
path: root/bin/auto_compile
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-03 12:56:58 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-03 12:56:58 +0000
commit04d37436f157b09db27ce4acbd6a27f6823bc915 (patch)
tree5fbc9d20b114428730e550070f93ec5c49a1d31b /bin/auto_compile
parent26184bdf56527d5efb1f2ce7a5e493b536f72f56 (diff)
downloadATCD-04d37436f157b09db27ce4acbd6a27f6823bc915.tar.gz
Added smart_proxies flag
Diffstat (limited to 'bin/auto_compile')
-rwxr-xr-xbin/auto_compile4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/auto_compile b/bin/auto_compile
index f4c992bd948..88a8bd7b93d 100755
--- a/bin/auto_compile
+++ b/bin/auto_compile
@@ -41,6 +41,7 @@ $CMD = basename($0);
$single_threaded = 0;
$minimum_corba = 0;
$ami = 0;
+$smart_proxies = 0;
$dont_update = 0;
$dont_run = 0;
$pre_realclean = 0;
@@ -63,6 +64,9 @@ while ($#ARGV >= 0) {
} elsif ($ARGV[0] eq "-ami") {
$ami =1;
shift;
+ } elsif ($ARGV[0] eq "-smart_proxies") {
+ $smart_proxies = 1;
+ shift
}elsif ($ARGV[0] eq "-build_list") {
shift;
@BUILD_LIST = split (/,/, $ARGV[0]);