- Timestamp:
- Jun 2, 2001, 7:50:36 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/configure.cmd
r5762 r5888 1 /* $Id: configure.cmd,v 1. 19 2001-05-19 20:53:04bird Exp $1 /* $Id: configure.cmd,v 1.20 2001-06-02 17:50:36 bird Exp $ 2 2 * 3 3 * Configuration script. … … 37 37 when (ch = '?' | ch = 'H' | substr(sArg, 1, 2) = '-H') then 38 38 do 39 say 'Odin32 Configure.cmd. $Revision: 1. 19$.'39 say 'Odin32 Configure.cmd. $Revision: 1.20 $.' 40 40 say 'syntax: Configure.cmd [-n] [-w]' 41 41 say ' -n Noninteractive.' … … 114 114 sVA = '' 115 115 if (sVA = '') then 116 sVA = SearchPaths('PATH', ' icc.exe', 'BOOKSHELF', '..\bin\icc.exe', 'Path to IBM VisualAge for C++ or IBM C and C++ Compilers, and set its environment you compile:');116 sVA = SearchPaths('PATH', '..\bin\icc.exe', 'BOOKSHELF', '..\bin\icc.exe', 'Path to IBM VisualAge for C++ or IBM C and C++ Compilers, and set its environment you compile:'); 117 117 sVA = ValidatePath(sVA, 'bin\icc.exe', 'VisualAge Path'); 118 118 call lineout sIncFile, 'VACPATH =' sVA … … 245 245 * @returns The path if valid. If invalid an empty string is returned. 246 246 */ 247 ValidatePath: procedure 247 ValidatePath: procedure expose fWin32k 248 248 parse arg sPath, sFile, sDesc 249 250 if (strip(sPath) = "" & \fWin32k) then 251 return ""; 249 252 250 253 rc = stream(sPath'\'sFile, 'c', 'query exists')
Note:
See TracChangeset
for help on using the changeset viewer.