aboutsummaryrefslogtreecommitdiff
path: root/common/makefiles/IdlCompilation.gmk
diff options
context:
space:
mode:
authorerikj <none@none>2012-12-27 20:18:21 +0100
committererikj <none@none>2012-12-27 20:18:21 +0100
commitf220a23121ae5ad818341b32a6fbe774d708dca0 (patch)
tree292af2017ec245add1769aae4b09ce63021ff24d /common/makefiles/IdlCompilation.gmk
parent27be3174f71f0b92003460836d44c1f134d91432 (diff)
8005540: build-infra: Improve incremental build speed on windows by caching find results
Reviewed-by: ohair
Diffstat (limited to 'common/makefiles/IdlCompilation.gmk')
-rw-r--r--common/makefiles/IdlCompilation.gmk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/makefiles/IdlCompilation.gmk b/common/makefiles/IdlCompilation.gmk
index 11f661a..6dc5fee 100644
--- a/common/makefiles/IdlCompilation.gmk
+++ b/common/makefiles/IdlCompilation.gmk
@@ -87,7 +87,7 @@ $(if $(16),$(error Internal makefile error: Too many arguments to SetupIdlCompil
$1_SRC := $$(abspath $$($1_SRC))
$1_BIN := $$(abspath $$($1_BIN))
# Find all existing java files and existing class files.
-$$(shell $(MKDIR) -p $$($1_SRC) $$($1_BIN))
+$$(eval $$(call MakeDir,$$($1_BIN)))
$1_SRCS := $$(shell find $$($1_SRC) -name "*.idl")
$1_BINS := $$(shell find $$($1_BIN) -name "*.java")
# Prepend the source/bin path to the filter expressions.