Changeset 337 for trunk/openjdk/jdk


Ignore:
Timestamp:
Feb 28, 2012, 6:52:17 PM (13 years ago)
Author:
dmik
Message:

Fully obey BUILD_CLIENT_ONLY on OS/2.

This completely disables building the server JVM and requiring
its parts by other components. Useful for developing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/openjdk/jdk/make/java/redist/Makefile

    r278 r337  
    6969
    7070# List of files coming from outside this workspace
     71ifndef BUILD_CLIENT_ONLY
    7172IMPORT_LIST = $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_NAME) \
    7273              $(LIB_LOCATION)/$(SERVER_LOCATION)/Xusage.txt
     74endif
    7375
    7476# INCLUDE_SA is false on platforms where SA is not supported.
     
    160162# Get the hotspot .map and .sym files for client and server
    161163IMPORT_LIST += \
    162         $(LIBDIR)/$(JVMLIB_NAME) \
     164        $(LIBDIR)/$(JVMLIB_NAME)
     165
     166ifndef BUILD_CLIENT_ONLY
     167IMPORT_LIST += \
    163168        $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMMAP_NAME) \
    164169        $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMSYM_NAME)
     170endif
    165171
    166172# Hotspot client is only available on 32-bit builds
Note: See TracChangeset for help on using the changeset viewer.