提交 c9cde879 编写于 作者: C ccheung

6992226: Missing windows COMPANY file property settings

Reviewed-by: ohair
上级 9b7be5ea
...@@ -83,14 +83,19 @@ ifndef CLOSED_SRC ...@@ -83,14 +83,19 @@ ifndef CLOSED_SRC
CLOSED_SRC = $(BUILDDIR)/../src/closed CLOSED_SRC = $(BUILDDIR)/../src/closed
endif endif
# If we have no closed directory, force it to an openjdk build # If CLOSE_SRC_INCLUDED isn't set to true, check if there's any
CLOSED_SRC_DIR_EXISTS := $(shell \ # closed directory.
ifneq ($(CLOSED_SRC_INCLUDED), true)
CLOSED_SRC_INCLUDED := $(shell \
if [ -d $(CLOSED_SRC) ] ; then \ if [ -d $(CLOSED_SRC) ] ; then \
echo true; \ echo true; \
else \ else \
echo false; \ echo false; \
fi) fi)
ifeq ($(CLOSED_SRC_DIR_EXISTS), false) endif
# Set OPENJDK based on CLOSED_SRC_INCLUDED
ifeq ($(CLOSED_SRC_INCLUDED), false)
OPENJDK = true OPENJDK = true
endif endif
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册