Changeset 446


Ignore:
Timestamp:
Aug 25, 2016, 8:40:21 PM (9 years ago)
Author:
dmik
Message:

Fix strange typo in env.cmd.

It was there for years and would break the script when started as
se -thotspot make. The typo was there forever and perhaps would
cause Object REXX to silently return false while failing under
Classic REXX.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/env.cmd

    r443 r446  
    268268        build_path = ScriptDir'openjdk\build\os2-i586'
    269269        if (wordpos('debug_build', aArgs) > 0) then build_path = build_path'-debug'
    270         else if (wordpos('fastdebug_build') > 0) then build_path = build_path'-fastdebug'
     270        else if (wordpos('fastdebug_build', aArgs) > 0) then build_path = build_path'-fastdebug'
    271271    end
    272272    ExtraArgs = 'xcopy' build_path'\hotspot\import\jre\bin\client\*' build_path'\bin\client\'
Note: See TracChangeset for help on using the changeset viewer.