Changeset 21


Ignore:
Timestamp:
Jun 9, 2010, 11:01:33 PM (15 years ago)
Author:
dmik
Message:

langtools: Make it build on OS/2 (don't pass system classpath to javac.exe).

Location:
trunk/openjdk/langtools/make
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/langtools/make/Makefile

    r18 r21  
    149149ifdef FINDBUGS_HOME
    150150  ANT_OPTIONS += -Dfindbugs.home=$(FINDBUGS_HOME)
     151endif
     152
     153ifeq ($(PLATFORM), os2)
     154  # system classpath isn't necessary for the build but it's usually long (due to
     155  # ant jars) and passing it to javac started through cmd.exe (as in case of
     156  # fork=yes) causes cmd.exe to crash with SYS0008, so disable this
     157  ANT_OPTIONS += -Dbuild.sysclasspath=ignore
    151158endif
    152159
  • trunk/openjdk/langtools/make/build.xml

    r2 r21  
    7979    </condition>
    8080    <condition property="java.marker" value="bin/java.exe">
    81         <os family="windows"/>
     81        <or>
     82            <os family="windows"/>
     83            <os family="os/2"/>
     84        </or>
    8285    </condition>
    8386
Note: See TracChangeset for help on using the changeset viewer.