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).

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.