提交 3804e3b9 编写于 作者: C cl

Merge

...@@ -191,7 +191,7 @@ endif ...@@ -191,7 +191,7 @@ endif
# Generic # Generic
REQUIRED_ANT_VER = 1.6.3 REQUIRED_ANT_VER = 1.6.3
REQUIRED_BOOT_VER = 1.5 REQUIRED_BOOT_VER = 1.6
REQUIRED_FREETYPE_VERSION = 2.3.0 REQUIRED_FREETYPE_VERSION = 2.3.0
REQUIRED_MAKE_VER = 3.78 REQUIRED_MAKE_VER = 3.78
REQUIRED_UNZIP_VER = 5.12 REQUIRED_UNZIP_VER = 5.12
......
...@@ -47,9 +47,9 @@ BUG_SUBMIT_LINE = <a href=\"$(BUG_SUBMIT_URL)\">Submit a bug or feature</a> ...@@ -47,9 +47,9 @@ BUG_SUBMIT_LINE = <a href=\"$(BUG_SUBMIT_URL)\">Submit a bug or feature</a>
# Url to devdocs page # Url to devdocs page
# Was: http://java.sun.com/javase/6/webnotes/devdocs-vs-specs.html # Was: http://java.sun.com/javase/6/webnotes/devdocs-vs-specs.html
DEV_DOCS_URL-5 = http://java.sun.com/j2se/1.5.0/docs DEV_DOCS_URL-5 = http://java.sun.com/j2se/1.5.0/docs/index.html
DEV_DOCS_URL-6 = http://download.oracle.com/docs/cd/E17409_01/javase/6/docs DEV_DOCS_URL-6 = http://download.oracle.com/javase/6/docs/index.html
DEV_DOCS_URL-7 = http://download.oracle.com/docs/cd/E17409_01/javase/7/docs DEV_DOCS_URL-7 = http://download.oracle.com/javase/7/docs/index.html
DEV_DOCS_URL = $(DEV_DOCS_URL-$(JDK_MINOR_VERSION)) DEV_DOCS_URL = $(DEV_DOCS_URL-$(JDK_MINOR_VERSION))
# Url to Java Language Spec # Url to Java Language Spec
...@@ -84,6 +84,11 @@ ALL_SOURCE_DIRS = $(SHARE_SRC)/classes \ ...@@ -84,6 +84,11 @@ ALL_SOURCE_DIRS = $(SHARE_SRC)/classes \
$(SHARE_SRC)/../solaris/classes \ $(SHARE_SRC)/../solaris/classes \
$(SHARE_SRC)/../windows/classes \ $(SHARE_SRC)/../windows/classes \
$(SHARE_SRC)/doc/stub $(SHARE_SRC)/doc/stub
# List of directories that actually exist
ALL_EXISTING_SOURCE_DIRS := $(wildcard $(ALL_SOURCE_DIRS))
# List with classpath separator between them
EMPTY:= EMPTY:=
SPACE:= $(EMPTY) $(EMPTY) SPACE:= $(EMPTY) $(EMPTY)
RELEASEDOCS_SOURCEPATH = \ RELEASEDOCS_SOURCEPATH = \
...@@ -240,7 +245,8 @@ include NON_CORE_PKGS.gmk ...@@ -240,7 +245,8 @@ include NON_CORE_PKGS.gmk
# Default target is same as docs target, create core api and all others it can # Default target is same as docs target, create core api and all others it can
# #
all docs: coredocs otherdocs all: docs
docs: coredocs otherdocs
################################################################# #################################################################
# Production Targets -- USE THESE TARGETS WHEN: # Production Targets -- USE THESE TARGETS WHEN:
...@@ -1178,9 +1184,9 @@ $(TRACING_PACKAGES_FILE): $(DIRECTORY_CACHE) $(call PackageDependencies,$(TRACIN ...@@ -1178,9 +1184,9 @@ $(TRACING_PACKAGES_FILE): $(DIRECTORY_CACHE) $(call PackageDependencies,$(TRACIN
# #
# Get a cache of all the directories # Get a cache of all the directories
$(DIRECTORY_CACHE): $(ALL_SOURCE_DIRS) $(DIRECTORY_CACHE): $(ALL_EXISTING_SOURCE_DIRS)
$(prep-target) $(prep-target)
@for cp in $(ALL_SOURCE_DIRS) ; do \ @for cp in $(ALL_EXISTING_SOURCE_DIRS) ; do \
$(ECHO) "$(FIND) $${cp} -type f >> $@"; \ $(ECHO) "$(FIND) $${cp} -type f >> $@"; \
$(FIND) $${cp} -type f >> $@; \ $(FIND) $${cp} -type f >> $@; \
done done
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册