8178278: Move Standard Algorithm Names document to specs directory

Reviewed-by: erikj
This commit is contained in:
Magnus Ihse Bursie 2017-05-10 09:02:51 +02:00
parent 4e0cc203c7
commit 69d205a278

View File

@ -367,13 +367,15 @@ COPY_SPEC_FILTER := %.html %.gif %.jpg %.mib %.css
$(foreach m, $(ALL_MODULES), \ $(foreach m, $(ALL_MODULES), \
$(eval SPECS_$m := $(call FindModuleSpecsDirs, $m)) \ $(eval SPECS_$m := $(call FindModuleSpecsDirs, $m)) \
$(if $(SPECS_$m), \ $(foreach d, $(SPECS_$m), \
$(eval $(call SetupCopyFiles, COPY_$m, \ $(if $(filter $(COPY_SPEC_FILTER), $(call CacheFind, $d)), \
SRC := $(SPECS_$m), \ $(eval $(call SetupCopyFiles, COPY_$m, \
FILES := $(filter $(COPY_SPEC_FILTER), $(call CacheFind, $(SPECS_$m))), \ SRC := $d, \
DEST := $(JAVADOC_OUTPUTDIR)/specs/, \ FILES := $(filter $(COPY_SPEC_FILTER), $(call CacheFind, $d)), \
)) \ DEST := $(JAVADOC_OUTPUTDIR)/specs/, \
$(eval JDK_SPECS_TARGETS += $(COPY_$m)) \ )) \
$(eval JDK_SPECS_TARGETS += $(COPY_$m)) \
) \
) \ ) \
) )