From f89a58df619e654e38e7d32ed5cc301dbf54b6a7 Mon Sep 17 00:00:00 2001 From: Erik Joelsson Date: Thu, 14 Jan 2016 13:50:40 +0100 Subject: [PATCH] 8147086: Excluding of copy files broken after JDK-8144226 Reviewed-by: ihse --- make/common/JavaCompilation.gmk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/common/JavaCompilation.gmk b/make/common/JavaCompilation.gmk index 4bf3a0d5774..c569557ec34 100644 --- a/make/common/JavaCompilation.gmk +++ b/make/common/JavaCompilation.gmk @@ -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!