Changeset 5030 for trunk/tools


Ignore:
Timestamp:
Jan 26, 2001, 10:33:13 PM (25 years ago)
Author:
phaller
Message:

Corrected RxFuncQuery

Location:
trunk/tools/bin
Files:
5 edited

Legend:

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

    r5012 r5030  
    1 /* $Id: APIImport.cmd,v 1.6 2001-01-22 20:25:01 phaller Exp $
     1/* $Id: APIImport.cmd,v 1.7 2001-01-26 21:33:13 phaller Exp $
    22 *
    33 * Helper script which invokes APIImport.exe with the correct .def file.
     
    77 */
    88
    9 if RxFuncQuery('SysFileDelete')=0 THEN
     9if RxFuncQuery('SysFileDelete')=1 THEN
    1010  call RxFuncAdd 'SysFileDelete', 'RexxUtil', 'SysFileDelete';
    1111
    12 if RxFuncQuery('SysFileFree')=0 THEN
     12if RxFuncQuery('SysFileFree')=1 THEN
    1313    call RxFuncAdd 'SysFileTree', 'RexxUtil', 'SysFileTree';
    1414
  • trunk/tools/bin/BldLevelInf.cmd

    r5018 r5030  
    1 /* $Id: BldLevelInf.cmd,v 1.4 2001-01-23 15:32:18 bird Exp $
     1/* $Id: BldLevelInf.cmd,v 1.5 2001-01-26 21:33:13 phaller Exp $
    22 *
    33 * Adds a Description string to the given .def-file.
     
    66 */
    77
    8 if (RxFuncQuery('SysLoadFuncs') = 0) then
     8if RxFuncQuery('SysLoadFuncs') = 1 then
    99do
    1010    call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs';
  • trunk/tools/bin/CreatePath.cmd

    r5012 r5030  
    1 /* $Id: CreatePath.cmd,v 1.2 2001-01-22 20:25:01 phaller Exp $
     1/* $Id: CreatePath.cmd,v 1.3 2001-01-26 21:33:13 phaller Exp $
    22 *
    33 * Createpath.cmd <pathname>
     
    77 */
    88
    9 if RxFuncQuery('SysMkDir')=0 THEN
     9if RxFuncQuery('SysMkDir')=1 THEN
    1010    call RxFuncAdd 'SysMkDir', 'RexxUtil', 'SysMkDir'
    1111
  • trunk/tools/bin/DoWithDirs.cmd

    r5012 r5030  
    1 /* $Id: DoWithDirs.cmd,v 1.9 2001-01-22 20:25:02 phaller Exp $
     1/* $Id: DoWithDirs.cmd,v 1.10 2001-01-26 21:33:13 phaller Exp $
    22 *
    33 * Syntax: dowithdirs.cmd [-e<list of excludes>] [-c] [-i] [-l] [-r] <cmd with args...>
     
    1414 */
    1515
    16 if RxFuncQuery('SysLoadFuncs')=0 THEN
     16if RxFuncQuery('SysLoadFuncs')=1 THEN
    1717DO
    1818  call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
    1919  call SysLoadFuncs
    2020END
     21
    2122
    2223    /* init options */
  • trunk/tools/bin/MakeBldLevelInfo.cmd

    r5012 r5030  
    1 /* $Id: MakeBldLevelInfo.cmd,v 1.2 2001-01-22 20:25:02 phaller Exp $
     1/* $Id: MakeBldLevelInfo.cmd,v 1.3 2001-01-26 21:33:13 phaller Exp $
    22 *
    33 * Adds a Description string to the given .def-file.
     
    66 */
    77
    8 if RxFuncQuery('SysLoadFuncs'=0 THEN
     8if RxFuncQuery('SysLoadFuncs'=1 THEN
    99DO
    1010  call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs';
Note: See TracChangeset for help on using the changeset viewer.