jdk/makefiles/CopyIntoClasses.gmk
changeset 15126 bceb690ccf35
parent 14343 8e4626a27efe
child 16507 75bde2ca0061
equal deleted inserted replaced
14873:0d625373c69e 15126:bceb690ccf35
   167 #
   167 #
   168 # Any other META-INF/services configuration file is found here and platform specific comments
   168 # Any other META-INF/services configuration file is found here and platform specific comments
   169 # are uncommented and the configuration file is stored in the output META-INF directory.
   169 # are uncommented and the configuration file is stored in the output META-INF directory.
   170 
   170 
   171 # Make sure the output directory is created.
   171 # Make sure the output directory is created.
   172 $(shell $(MKDIR) -p $(JDK_OUTPUTDIR)/classes/META-INF/services)
   172 $(eval $(call MakeDir,$(JDK_OUTPUTDIR)/classes/META-INF/services))
   173 # Find all META-INF/services/* files
   173 # Find all META-INF/services/* files
   174 ALL_META-INF_DIRS_share:=$(shell $(FIND) $(JDK_TOPDIR)/src/share/classes -type d -a -name META-INF)
   174 ALL_META-INF_DIRS_share:=$(shell $(FIND) $(JDK_TOPDIR)/src/share/classes -type d -a -name META-INF)
   175 ALL_META-INF_DIRS_targetapi:=$(shell $(FIND) $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes -type d -a -name META-INF)
   175 ALL_META-INF_DIRS_targetapi:=$(shell $(FIND) $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes -type d -a -name META-INF)
   176 # Platform specific overrides shared
   176 # Platform specific overrides shared
   177 ifneq ($(ALL_META-INF_DIRS_targetapi),)
   177 ifneq ($(ALL_META-INF_DIRS_targetapi),)