Changeset 10206 for trunk/tools
- Timestamp:
- Aug 5, 2003, 2:16:17 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/DailyBuild/job.cmd
r10019 r10206 1 /* $Id: job.cmd,v 1.1 0 2003-04-14 22:08:03bird Exp $1 /* $Id: job.cmd,v 1.11 2003-08-05 00:16:17 bird Exp $ 2 2 * 3 3 * Main job for building OS/2. … … 10 10 11 11 /* Load rexxutils functions */ 12 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'; 13 call SysloadFuncs; 12 if (RxFuncQuery('SysLoadFuncs') = 1) then 13 do 14 rc = RxFuncAdd('SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'); 15 if (rc <> 0) then 16 do 17 say 'RxFuncAdd -> 'rc''; 18 do i = 1 to 1000 19 rc = RxFuncAdd('SysDropFuncs', 'RexxUtil', 'SysDropFuncs'); 20 call SysDropFuncs; 21 rc = RxFuncAdd('SysDropFuncs', 'RexxUtil', 'SysDropFuncs'); 22 call SysDropFuncs; 23 end 24 rc = RxFuncAdd('SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'); 25 end 26 call SysLoadFuncs; 27 end 14 28 15 29 /*
Note:
See TracChangeset
for help on using the changeset viewer.