Changeset 69 for trunk/openjdk/jdk/make/common/Release.gmk
- Timestamp:
- Jul 19, 2010, 10:55:51 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/jdk/make/common/Release.gmk
r67 r69 69 69 70 70 # Text documents on windows use this suffix 71 ifeq ($(filter-out windows ,os2$(PLATFORM)),)71 ifeq ($(filter-out windows os2, $(PLATFORM)),) 72 72 TEXT_SUFFIX = .txt 73 73 endif … … 92 92 LICENSE_VERSION=.fcs 93 93 endif 94 ifeq ($(filter-out windows ,os2$(PLATFORM)),)94 ifeq ($(filter-out windows os2, $(PLATFORM)),) 95 95 LICENSE_DOCLIST_JDK = $(subst $(LICENSE_VERSION),,\ 96 96 $(shell $(CD) $(SHARE_JDK_DOC_SRC) && \ … … 786 786 -o meta-index *.jar 787 787 @$(CD) $(JRE_IMAGE_DIR)/lib/ext && $(java-vm-cleanup) 788 ifeq ($(filter-out windows ,os2$(PLATFORM)),)788 ifeq ($(filter-out windows os2, $(PLATFORM)),) 789 789 @# Remove certain *.lib files 790 790 $(CD) $(JRE_IMAGE_DIR)/lib && \ … … 821 821 JRE_ELF_LIST=$(TEMPDIR)/jre-elf-files.list 822 822 $(JRE_ELF_LIST): 823 ifneq ($(filter-out windows ,os2$(PLATFORM)),)823 ifneq ($(filter-out windows os2, $(PLATFORM)),) 824 824 $(RM) $@ 825 825 $(FIND) $(JRE_IMAGE_DIR)/lib -type f -name \*.$(LIB_SUFFIX) >> $@ … … 906 906 fi; \ 907 907 done 908 ifeq ($(filter-out windows ,os2$(PLATFORM)),)908 ifeq ($(filter-out windows os2, $(PLATFORM)),) 909 909 @# 910 910 @# lib/ … … 1044 1044 @# 1045 1045 $(CD) javax/swing/beaninfo && $(MAKE) swing-1.2-beans 1046 ifneq ($(filter-out windows ,os2$(PLATFORM)),)1046 ifneq ($(filter-out windows os2, $(PLATFORM)),) 1047 1047 $(call copy-man-pages,$(JDK_IMAGE_DIR),$(JDK_MAN_PAGES)) 1048 1048 endif # !windows … … 1059 1059 JDK_ELF_LIST=$(TEMPDIR)/jdk-elf-files.list 1060 1060 $(JDK_ELF_LIST): 1061 ifneq ($(filter-out windows ,os2$(PLATFORM)),)1061 ifneq ($(filter-out windows os2, $(PLATFORM)),) 1062 1062 $(RM) $@ 1063 1063 $(FIND) $(JDK_IMAGE_DIR)/jre/lib -type f -name \*.$(LIB_SUFFIX) >> $@ … … 1222 1222 $(RM) -r $(OUTPUTDIR)/$(ARCH) 1223 1223 endif 1224 ifeq ($(filter-out windows ,os2$(PLATFORM)),)1224 ifeq ($(filter-out windows os2, $(PLATFORM)),) 1225 1225 $(RM) $(TEMPDIR)/rebase.input 1226 1226 endif
Note:
See TracChangeset
for help on using the changeset viewer.