7043921: generate java-rmi.cgi on 64 bit platform

Reviewed-by: omajid, katleman
This commit is contained in:
Kelly O'Hair 2011-05-12 07:24:37 -07:00
parent 6df9bf9a41
commit 30a20e1d62

View File

@ -85,16 +85,21 @@ REMOTE_impls = \
sun.rmi.registry.RegistryImpl \ sun.rmi.registry.RegistryImpl \
sun.rmi.transport.DGCImpl sun.rmi.transport.DGCImpl
ifeq ($(PLATFORM), windows) #
build: stubs # The java-rmi.cgi script in bin/ only gets delivered in certain situations
else # PLATFORM #
ifneq ($(ARCH_DATA_MODEL), 32) BUILD_TARGETS = stubs
build: stubs ifeq ($(PLATFORM), linux)
else # ARCH_DATA_MODEL BUILD_TARGETS += bin
build: stubs bin endif
ifeq ($(PLATFORM), solaris)
ifeq ($(ARCH_DATA_MODEL), 32)
BUILD_TARGETS += bin
endif endif
endif endif
build: $(BUILD_TARGETS)
clean clobber:: bin.clean clean clobber:: bin.clean