|
From: <wsh...@us...> - 2003-08-08 15:09:19
|
Update of /cvsroot/emc/rcslib
In directory sc8-pr-cvs1:/tmp/cvs-serv8893
Modified Files:
Tag: wps_multiplat_dev_branch
buildrcs
Log Message:
Make every possible build method use etc/multiplatbuild.sh unless the environment variable USE_OLD_RCSLIB_MAKEFILES is set
Index: buildrcs
===================================================================
RCS file: /cvsroot/emc/rcslib/buildrcs,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -C2 -d -r1.7 -r1.7.2.1
*** buildrcs 27 Oct 2000 21:08:31 -0000 1.7
--- buildrcs 8 Aug 2003 15:08:46 -0000 1.7.2.1
***************
*** 1,7 ****
#!/bin/csh -f
set PLATBASE=`uname -s | gawk '{ printf ( "%s",tolower ( $1 ) ) }'`
! set PLAT=`uname -sr | sed "y/ /_/" | sed "y/./_/" | sed s/-rtl.\*\$// | sed "y/-/_/" | gawk '{ printf ( "%s",tolower ( $1 ) ) }'`
if (${PLATBASE} == "linux") then
--- 1,12 ----
#!/bin/csh -f
+ if test "x${USE_OLD_RCSLIB_MAKEFILES}" = "x" ; then
+ etc/multiplatbuild.sh
+ exit 0
+ fi
+
set PLATBASE=`uname -s | gawk '{ printf ( "%s",tolower ( $1 ) ) }'`
! setenv PLAT `uname -sr | sed "y/ /_/" | sed "y/./_/" | sed s/-rtl.\*\$// | sed "y/-/_/" | gawk '{ printf ( "%s",tolower ( $1 ) ) }'`
if (${PLATBASE} == "linux") then
***************
*** 16,21 ****
! if ($#argv >= 1) then
! set PLAT=$1
set PLATBASE=`echo ${PLAT}| sed s/-rtl.\*\$// | sed s/_.\*\$//`
endif
--- 21,26 ----
! if ($#argv >= 1) then
! setenv PLAT $1
set PLATBASE=`echo ${PLAT}| sed s/-rtl.\*\$// | sed s/_.\*\$//`
endif
|