8147086: Excluding of copy files broken after JDK-8144226

Reviewed-by: ihse
This commit is contained in:
Erik Joelsson 2016-01-14 13:50:40 +01:00
parent 6559500ac2
commit f89a58df61

View File

@ -267,7 +267,7 @@ define SetupJavaCompilationBody
$1_ALL_COPIES := $$(filter $$($1_INCLUDE_PATTERN),$$($1_ALL_COPIES))
endif
ifneq (,$$($1_EXCLUDE_PATTERN))
$1_ALL_COPIES := $$(filter-out $$($1_EXCLUDES_PATTERN),$$($1_ALL_COPIES))
$1_ALL_COPIES := $$(filter-out $$($1_EXCLUDE_PATTERN),$$($1_ALL_COPIES))
endif
ifneq (,$$($1_ALL_COPIES))
# Yep, there are files to be copied!