# HG changeset patch # User erikj # Date 1382088869 -7200 # Node ID 6170a286f87938e9afa06ca4e4791e8f8555ad82 # Parent fa095e917446d7eba406b55d74bb63e78fe70893 8025869: make docs doesn't regenerate docs correctly after changing API doc comments in jaxp sources Reviewed-by: ihse, tbell diff -r fa095e917446 -r 6170a286f879 common/makefiles/JavaCompilation.gmk --- a/common/makefiles/JavaCompilation.gmk Fri Oct 18 10:41:18 2013 +0200 +++ b/common/makefiles/JavaCompilation.gmk Fri Oct 18 11:34:29 2013 +0200 @@ -266,8 +266,12 @@ endif # Find all files in the source tree. - $1_ALL_SRCS := $$(call not-containing,_the., \ - $$(filter $$(addprefix %,$$($1_SUFFIXES)),$$(call CacheFind,$$($1_FIND_LIST)))) + $1_ALL_SRCS := $$(call not-containing,_the.,$$(call CacheFind,$$($1_FIND_LIST))) + + # Filter on suffixes if set + ifneq ($$($1_SUFFIXES),) + $1_ALL_SRCS := $$(filter $$(addprefix %, $$($1_SUFFIXES)), $$($1_ALL_SRCS)) + endif ifneq ($$($1_INCLUDES),) ifneq ($$($1_SUFFIXES),)