]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE14-windows-ntbuild-20050706
authorJeffrey Altman <jaltman@secure-endpoints.com>
Wed, 6 Jul 2005 15:11:58 +0000 (15:11 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Wed, 6 Jul 2005 15:11:58 +0000 (15:11 +0000)
Update the default sysname to i386_w2k in the ntbuild.bat file

(cherry picked from commit 2428f3eee3c84b745e04c5ee70d9405df620b385)

src/ntbuild.bat

index 29418352f107edd9db21b618e011b5f56c4efde8..846b6591f924e8a53a60f4d37c353b991f952f30 100755 (executable)
@@ -20,8 +20,8 @@ REM ########################################################################
 REM ########################################################################
 REM General required definitions:
 REM     SYS_NAME = AFS system name
-REM Choose one of "i386_win95" or "i386_nt40"
-SET SYS_NAME=i386_nt40
+REM Choose one of "i386_w2k", "amd64_w2k", or "i64_w2k"
+SET SYS_NAME=i386_w2k
 
 REM Specify the targeted version of Windows and IE: 0x400 for Win9x/NT4 
 REM and above; 0x500 for Windows 2000 and above
@@ -83,13 +83,25 @@ goto usage
 :checked
 set AFSBLD_TYPE=CHECKED
 set AFSDEV_CRTDEBUG=1
-goto args_done
+goto ifs_arg
 
 :free
 set AFSBLD_TYPE=FREE
 set AFSDEV_CRTDEBUG=0
+goto ifs_arg
+
+:ifs_arg
+
+set AFSIFS=
+if "%2"=="ifs" goto is_ifs
+if "%2"=="IFS" goto is_ifs
+
 goto args_done
 
+:is_ifs
+
+set AFSIFS=TRUE
+
 :args_done
 
 REM #######################################################################