Changeset 10206 for trunk/tools


Ignore:
Timestamp:
Aug 5, 2003, 2:16:17 AM (22 years ago)
Author:
bird
Message:

Nicer SysLoadFuncs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/DailyBuild/job.cmd

    r10019 r10206  
    1 /* $Id: job.cmd,v 1.10 2003-04-14 22:08:03 bird Exp $
     1/* $Id: job.cmd,v 1.11 2003-08-05 00:16:17 bird Exp $
    22 *
    33 * Main job for building OS/2.
     
    1010
    1111    /* 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
    1428
    1529    /*
Note: See TracChangeset for help on using the changeset viewer.