#100000# intern modules only for cws environment

This commit is contained in:
Vladimir Glazounov 2002-12-06 10:07:34 +00:00
parent 46d56510c9
commit e1e2151f55

View file

@ -5,9 +5,9 @@ eval 'exec perl -S $0 ${1+"$@"}'
#
# $RCSfile: build.pl,v $
#
# $Revision: 1.71 $
# $Revision: 1.72 $
#
# last change: $Author: vg $ $Date: 2002-12-05 15:55:24 $
# last change: $Author: vg $ $Date: 2002-12-06 11:07:34 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@ -73,16 +73,18 @@ use Cwd;
use File::Path;
#use Thread 'yield'; # Should be uncommented if you have Thread.pm (untested)
use lib ("$ENV{SOLARENV}/bin/modules", "$ENV{COMMON_ENV_TOOLS}/modules");
use Cws;
use CvsModule;
use GenInfoParser;
if (defined $ENV{CWS_WORK_STAMP}) {
use lib ("$ENV{SOLARENV}/bin/modules", "$ENV{COMMON_ENV_TOOLS}/modules");
use Cws;
use CvsModule;
use GenInfoParser;
};
#### script id #####
( $script_name = $0 ) =~ s/^.*\b(\w+)\.pl$/$1/;
$id_str = ' $Revision: 1.71 $ ';
$id_str = ' $Revision: 1.72 $ ';
$id_str =~ /Revision:\s+(\S+)\s+\$/
? ($script_rev = $1) : ($script_rev = "-");