Changeset 143


Ignore:
Timestamp:
Sep 4, 2010, 1:39:45 AM (15 years ago)
Author:
dmik
Message:

jdk/make: Fixed typos that would prevent launchers from building.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/jdk/make/launchers/Makefile.launcher

    r74 r143  
    142142  JCONSOLE_CLASSPATH = { "/lib/jconsole.jar", "/lib/tools.jar", "/classes" }
    143143  OTHER_CPPFLAGS += -DAPP_CLASSPATH='$(JCONSOLE_CLASSPATH)'
    144   ifeq ($(filter-out windows os2, $(PLATFORM)),)
     144  ifeq ($(PLATFORM), windows)
    145145    OTHER_CPPFLAGS += -DJAVAW
    146146    LDLIBS_COMMON  += user32.lib
    147147    MAIN_JAVA_ARGS += -J-Djconsole.showOutputViewer
    148148  endif
     149  ifeq ($(PLATFORM), os2)
     150    OTHER_CPPFLAGS += -DJAVAW
     151    MAIN_JAVA_ARGS += -J-Djconsole.showOutputViewer
     152  endif
    149153endif
    150154
    151155# GUI tools
    152156ifeq ($(GUI_TOOL),true)
    153   ifeq ($(filter-out windows os2, $(PLATFORM)),)
     157  ifneq ($(filter-out windows os2, $(PLATFORM)),)
    154158    # Anything with a GUI needs X11 to be linked in.
    155159    OTHER_LDLIBS += -L$(OPENWIN_LIB) -lX11
Note: See TracChangeset for help on using the changeset viewer.