mirror of
https://github.com/darlinghq/darling-openjdk.git
synced 2024-11-27 14:20:27 +00:00
6857805: Fix openjdk builds to avoid building deploy repository
Reviewed-by: xdono
This commit is contained in:
parent
ae19c87243
commit
57bbf9b1cb
@ -153,6 +153,20 @@ ifdef OPENJDK
|
||||
endif
|
||||
SKIP_OPENJDK_BUILD = true
|
||||
else
|
||||
|
||||
# Various non-OPENJDK reasons to NOT build the deploy repository
|
||||
ifeq ($(ARCH), ia64)
|
||||
BUILD_DEPLOY=false
|
||||
endif
|
||||
ifeq ($(ARCH), sparcv9)
|
||||
BUILD_DEPLOY=false
|
||||
endif
|
||||
ifeq ($(ARCH), amd64)
|
||||
ifeq ($(PLATFORM), solaris)
|
||||
BUILD_DEPLOY=false
|
||||
endif
|
||||
endif
|
||||
|
||||
ifndef SKIP_OPENJDK_BUILD
|
||||
#SKIP_OPENJDK_BUILD = false
|
||||
# Until 6675289 is resolved, or this feature is removed.
|
||||
|
@ -31,23 +31,6 @@ deploy: deploy-build
|
||||
|
||||
DEPLOY = deploy
|
||||
|
||||
BUILD_DEPLOY=true
|
||||
|
||||
ifeq ($(ARCH), ia64)
|
||||
BUILD_DEPLOY=false
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH), sparcv9)
|
||||
BUILD_DEPLOY=false;
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH), amd64)
|
||||
ifeq ($(PLATFORM), solaris)
|
||||
BUILD_DEPLOY=false
|
||||
endif
|
||||
endif
|
||||
|
||||
|
||||
# put the generated bundles in their own place in OUTPUTDIR
|
||||
DEPLOY_OUTPUTDIR = $(ABS_OUTPUTDIR)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user