Changeset 5888 for trunk/src


Ignore:
Timestamp:
Jun 2, 2001, 7:50:36 PM (24 years ago)
Author:
bird
Message:

Removed stupid messages when -w is specified. Corrected location of icc.exe.

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:04 bird Exp $
     1/* $Id: configure.cmd,v 1.20 2001-06-02 17:50:36 bird Exp $
    22 *
    33 * Configuration script.
     
    3737                when (ch = '?' | ch = 'H' | substr(sArg, 1, 2) = '-H') then
    3838                do
    39                     say 'Odin32 Configure.cmd. $Revision: 1.19 $.'
     39                    say 'Odin32 Configure.cmd. $Revision: 1.20 $.'
    4040                    say 'syntax: Configure.cmd [-n] [-w]'
    4141                    say '  -n   Noninteractive.'
     
    114114            sVA = ''
    115115        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:');
    117117        sVA = ValidatePath(sVA, 'bin\icc.exe', 'VisualAge Path');
    118118        call lineout sIncFile, 'VACPATH          =' sVA
     
    245245 * @returns The path if valid. If invalid an empty string is returned.
    246246 */
    247 ValidatePath: procedure
     247ValidatePath: procedure expose fWin32k
    248248    parse arg sPath, sFile, sDesc
     249
     250    if (strip(sPath) = "" & \fWin32k) then
     251        return "";
    249252
    250253    rc = stream(sPath'\'sFile, 'c', 'query exists')
Note: See TracChangeset for help on using the changeset viewer.