8025869: make docs doesn't regenerate docs correctly after changing API doc comments in jaxp sources

Fri, 18 Oct 2013 11:34:29 +0200

author
erikj
date
Fri, 18 Oct 2013 11:34:29 +0200
changeset 859
17d195bd56fc
parent 857
5b4f14990dd1
child 860
e27dda53d4f5

8025869: make docs doesn't regenerate docs correctly after changing API doc comments in jaxp sources
Reviewed-by: ihse, tbell

common/makefiles/JavaCompilation.gmk file | annotate | diff | comparison | revisions
     1.1 --- a/common/makefiles/JavaCompilation.gmk	Fri Oct 18 10:41:18 2013 +0200
     1.2 +++ b/common/makefiles/JavaCompilation.gmk	Fri Oct 18 11:34:29 2013 +0200
     1.3 @@ -266,8 +266,12 @@
     1.4    endif
     1.5  
     1.6    # Find all files in the source tree.
     1.7 -  $1_ALL_SRCS := $$(call not-containing,_the., \
     1.8 -      $$(filter $$(addprefix %,$$($1_SUFFIXES)),$$(call CacheFind,$$($1_FIND_LIST))))
     1.9 +  $1_ALL_SRCS := $$(call not-containing,_the.,$$(call CacheFind,$$($1_FIND_LIST)))
    1.10 +
    1.11 +  # Filter on suffixes if set
    1.12 +  ifneq ($$($1_SUFFIXES),)
    1.13 +    $1_ALL_SRCS := $$(filter $$(addprefix %, $$($1_SUFFIXES)), $$($1_ALL_SRCS))
    1.14 +  endif
    1.15  
    1.16    ifneq ($$($1_INCLUDES),)
    1.17      ifneq ($$($1_SUFFIXES),)

mercurial