This commit is contained in:
Kelly O'Hair 2011-03-08 16:05:16 -08:00
commit c33da3f290
5 changed files with 9 additions and 36 deletions

View File

@ -1098,7 +1098,7 @@ JRE_INFO_FILE = $(JRE_IMAGE_DIR)/release
# Common way to emit a line into the release or info file # Common way to emit a line into the release or info file
define info-file-item # name value define info-file-item # name value
$(PRINTF) "%s=\"%s\"\n" $1 $2 >> $@ $(PRINTF) '%s="%s"\n' $1 $2 >> $@
endef endef
# Values to emit # Values to emit

View File

@ -61,33 +61,11 @@ COMMA:= ,
EMPTY:= EMPTY:=
SPACE:=$(EMPTY) $(EMPTY) SPACE:=$(EMPTY) $(EMPTY)
COPYRIGHT_SYMBOL = &\#x00a9; COPYRIGHT_SYMBOL = &\#x00a9;
# Macros to handle the optional empty args. # Macro to construct the copyright line
# (The GNU make 3.78.1 "if" conditional is broken, fixed in GNU make 3.81) # (The GNU make 3.78.1 "if" conditional is broken, fixed in GNU make 3.81)
define OptionalCopyrightUrl # url
$(shell \
if [ "$1" != "" ] ; then \
printf "<a href=\"%s\">Copyright</a>" "$1"; \
else \
printf "Copyright"; \
fi)
endef
define OptionalCopyrightFirstYear # year
$(shell \
if [ "$1" != "" ] ; then \
printf "%s," "$1";\
fi)
endef
define OptionalCompanyAddress # address
$(shell \
if [ "$1" != "" ] ; then \
printf "%s" "$1";\
fi)
endef
define CopyrightLine # optionalurl optionalfirstyear optionaladdress define CopyrightLine # optionalurl optionalfirstyear optionaladdress
$(call OptionalCopyrightUrl,$1) $(COPYRIGHT_SYMBOL)\ $(if $(strip $1),<a href=\"$(strip $1)\">Copyright</a>,Copyright) \
$(call OptionalCopyrightFirstYear,$2) $(COPYRIGHT_YEAR),\ $(COPYRIGHT_SYMBOL) $(if $2,$2${COMMA},) $(COPYRIGHT_YEAR),\
$(COMPANY_NAME).\ $(FULL_COMPANY_NAME). $3 All rights reserved.
$(call OptionalCompanyAddress,$3)\
All rights reserved.
endef endef

View File

@ -115,7 +115,6 @@ NM = $(UTILS_CCS_BIN_PATH)nm
PKGMK = $(UTILS_COMMAND_PATH)pkgmk PKGMK = $(UTILS_COMMAND_PATH)pkgmk
PRINTF = $(UTILS_USR_BIN_PATH)printf PRINTF = $(UTILS_USR_BIN_PATH)printf
PWD = $(UTILS_COMMAND_PATH)pwd PWD = $(UTILS_COMMAND_PATH)pwd
RC = $(UTILS_COMMAND_PATH)rc
READELF = $(UTILS_USR_BIN_PATH)readelf READELF = $(UTILS_USR_BIN_PATH)readelf
RMDIR = $(UTILS_COMMAND_PATH)rmdir RMDIR = $(UTILS_COMMAND_PATH)rmdir
RPM = $(UTILS_COMMAND_PATH)rpm RPM = $(UTILS_COMMAND_PATH)rpm
@ -135,6 +134,7 @@ UNAME = $(UTILS_COMMAND_PATH)uname
UNIQ = $(UTILS_USR_BIN_PATH)uniq UNIQ = $(UTILS_USR_BIN_PATH)uniq
UNZIP = $(UTILS_USR_BIN_PATH)unzip UNZIP = $(UTILS_USR_BIN_PATH)unzip
UNZIPSFX = $(UTILS_DEVTOOL_PATH)unzipsfx UNZIPSFX = $(UTILS_DEVTOOL_PATH)unzipsfx
XARGS = $(UTILS_USR_BIN_PATH)xargs
WC = $(UTILS_USR_BIN_PATH)wc WC = $(UTILS_USR_BIN_PATH)wc
WHICH = $(UTILS_USR_BIN_PATH)which WHICH = $(UTILS_USR_BIN_PATH)which
YACC = $(UTILS_CCS_BIN_PATH)yacc YACC = $(UTILS_CCS_BIN_PATH)yacc

View File

@ -1012,11 +1012,6 @@ ifeq ($(PLATFORM), windows)
"" >> $(ERROR_FILE) ; \ "" >> $(ERROR_FILE) ; \
fi fi
else else
ifeq ($(wildcard $(REBASE)),)
@$(ECHO) "ERROR: Cannot find the REBASE utility from path: $(REBASE)\n" \
" This is normally obtained from the WINDOWSSDKDIR." \
"" >> $(ERROR_FILE)
endif
ifeq ($(wildcard $(RC)),) ifeq ($(wildcard $(RC)),)
@$(ECHO) "ERROR: Cannot find the RC utility from path: $(RC)\n" \ @$(ECHO) "ERROR: Cannot find the RC utility from path: $(RC)\n" \
" This is normally obtained from the WINDOWSSDKDIR." \ " This is normally obtained from the WINDOWSSDKDIR." \
@ -1024,7 +1019,7 @@ ifeq ($(PLATFORM), windows)
endif endif
ifeq ($(wildcard $(DUMPBIN)),) ifeq ($(wildcard $(DUMPBIN)),)
@$(ECHO) "ERROR: Cannot find the DUMPBIN utility from path: $(DUMPBIN)\n" \ @$(ECHO) "ERROR: Cannot find the DUMPBIN utility from path: $(DUMPBIN)\n" \
" This is normally obtained from the WINDOWSSDKDIR." \ " This is normally obtained from the COMPILER_PATH." \
"" >> $(ERROR_FILE) "" >> $(ERROR_FILE)
endif endif
endif endif

View File

@ -166,7 +166,7 @@ JDKJRE2COREAPI = ../../api
# Common bottom argument # Common bottom argument
define CommonBottom # year define CommonBottom # year
<font size=\"-1\"><p> $(call CopyrightLine,,$1,)</font> <font size=\"-1\"><br> $(call CopyrightLine,,$1,)</font>
endef endef
# Common trademark bottom argument (Not sure why this is used sometimes) # Common trademark bottom argument (Not sure why this is used sometimes)
@ -183,7 +183,7 @@ COREAPI_BOTTOM = <font size=\"-1\"> $(BUG_SUBMIT_LINE)\
see <a href=\"$(DEV_DOCS_URL)\" target=\"_blank\">Java SE Documentation</a>. \ see <a href=\"$(DEV_DOCS_URL)\" target=\"_blank\">Java SE Documentation</a>. \
That documentation contains more detailed, developer-targeted descriptions, \ That documentation contains more detailed, developer-targeted descriptions, \
with conceptual overviews, definitions of terms, workarounds, \ with conceptual overviews, definitions of terms, workarounds, \
and working code examples.<p>\ and working code examples.<br>\
$(call CopyrightLine,$(COPYRIGHT_URL),$(FIRST_COPYRIGHT_YEAR),)\ $(call CopyrightLine,$(COPYRIGHT_URL),$(FIRST_COPYRIGHT_YEAR),)\
</font> </font>