From 4c60a1c3c65b0c6c2ef36851c5f89140c23c552e Mon Sep 17 00:00:00 2001 From: poonam Date: Thu, 14 Apr 2016 11:08:30 -0700 Subject: [PATCH] 8153252: SA: Hotspot build on Windows fails if make/closed folder does not exist Reviewed-by: dsamersoff, erikj --- make/windows/makefiles/sa.make | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make/windows/makefiles/sa.make b/make/windows/makefiles/sa.make index d75e2aa20..84a34a712 100644 --- a/make/windows/makefiles/sa.make +++ b/make/windows/makefiles/sa.make @@ -44,9 +44,11 @@ HS_COMMON_SRC_REL = src HS_ALT_SRC_REL=src/closed HS_ALT_SRC = $(WorkSpace)/$(HS_ALT_SRC_REL) !ifndef HS_ALT_MAKE +!if exist($(WorkSpace)/make/closed) HS_ALT_MAKE=$(WorkSpace)/make/closed !endif !endif +!endif HS_COMMON_SRC = $(WorkSpace)/$(HS_COMMON_SRC_REL) -- GitLab