Changeset 5012 for trunk/tools


Ignore:
Timestamp:
Jan 22, 2001, 9:25:02 PM (25 years ago)
Author:
phaller
Message:

Only load RexxUtil on demand

Location:
trunk/tools/bin
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/bin/APIImport.cmd

    r3943 r5012  
    1 /* $Id: APIImport.cmd,v 1.5 2000-08-02 20:19:34 bird Exp $
     1/* $Id: APIImport.cmd,v 1.6 2001-01-22 20:25:01 phaller Exp $
    22 *
    33 * Helper script which invokes APIImport.exe with the correct .def file.
     
    77 */
    88
    9     call RxFuncAdd 'SysFileDelete', 'RexxUtil', 'SysFileDelete';
     9if RxFuncQuery('SysFileDelete')=0 THEN
     10  call RxFuncAdd 'SysFileDelete', 'RexxUtil', 'SysFileDelete';
     11
     12if RxFuncQuery('SysFileFree')=0 THEN
    1013    call RxFuncAdd 'SysFileTree', 'RexxUtil', 'SysFileTree';
    1114
  • trunk/tools/bin/BldLevelInf.cmd

    r4886 r5012  
    1 /* $Id: BldLevelInf.cmd,v 1.2 2001-01-08 20:15:51 bird Exp $
     1/* $Id: BldLevelInf.cmd,v 1.3 2001-01-22 20:25:01 phaller Exp $
    22 *
    33 * Adds a Description string to the given .def-file.
     
    66 */
    77
    8 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs';
    9 call SysLoadFuncs;
     8if RxFuncQuery('SysLoadFuncs'=0 THEN
     9DO
     10  call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs';
     11  call SysLoadFuncs;
     12END
    1013
    1114/*
  • trunk/tools/bin/CreatePath.cmd

    r4635 r5012  
    1 /* $Id: CreatePath.cmd,v 1.1 2000-11-19 23:24:51 bird Exp $
     1/* $Id: CreatePath.cmd,v 1.2 2001-01-22 20:25:01 phaller Exp $
    22 *
    33 * Createpath.cmd <pathname>
     
    66 *
    77 */
     8
     9if RxFuncQuery('SysMkDir')=0 THEN
    810    call RxFuncAdd 'SysMkDir', 'RexxUtil', 'SysMkDir'
    911
  • trunk/tools/bin/DoWithDirs.cmd

    r4645 r5012  
    1 /* $Id: DoWithDirs.cmd,v 1.8 2000-11-20 05:03:14 bird Exp $
     1/* $Id: DoWithDirs.cmd,v 1.9 2001-01-22 20:25:02 phaller Exp $
    22 *
    33 * Syntax: dowithdirs.cmd [-e<list of excludes>] [-c] [-i] [-l] [-r] <cmd with args...>
     
    1414 */
    1515
    16     call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
    17     call SysLoadFuncs
     16if RxFuncQuery('SysLoadFuncs')=0 THEN
     17DO
     18  call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
     19  call SysLoadFuncs
     20END
    1821
    1922    /* init options */
  • trunk/tools/bin/MakeBldLevelInfo.cmd

    r4804 r5012  
    1 /* $Id: MakeBldLevelInfo.cmd,v 1.1 2000-12-16 20:10:06 bird Exp $
     1/* $Id: MakeBldLevelInfo.cmd,v 1.2 2001-01-22 20:25:02 phaller Exp $
    22 *
    33 * Adds a Description string to the given .def-file.
     
    66 */
    77
    8 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs';
    9 call SysLoadFuncs;
    10 
     8if RxFuncQuery('SysLoadFuncs'=0 THEN
     9DO
     10  call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs';
     11  call SysLoadFuncs;
     12END
     13 
    1114/*
    1215 * Set default parameter values.
Note: See TracChangeset for help on using the changeset viewer.