< prev index next >

make/hotspot/ide/CreateVSProject.gmk

Print this page
rev 54035 : 8220363: hotspot-ide project fails
Summary: Added missing include and removed parenthesis
Reviewed-by:
Contributed-by: ralf.schmelter@sap.com

@@ -28,10 +28,11 @@
 
 include $(SPEC)
 include MakeBase.gmk
 include JavaCompilation.gmk
 include SetupJavaCompilers.gmk
+include Execute.gmk
 
 ifeq ($(call isTargetOs, windows), true)
   # The next part is a bit hacky. We include the CompileJvm.gmk to be
   # able to extact flags, but we do not wish to execute the rules.
 

@@ -147,11 +148,11 @@
   $(eval $(call SetupExecute, vcproj_file, \
       INFO := Generating Visual Studio project file, \
       DEPS := $(BUILD_PROJECT_CREATOR) $(VCPROJ_VARDEPS_FILE), \
       OUTPUT_FILE := $(VCPROJ_FILE), \
       COMMAND := $(PROJECT_CREATOR_TOOL) $(PROJECT_CREATOR_CLASS) \
-          $(PROJECT_CREATOR_ARGS) -projectFileName $(call FixPath, $(VCPROJ_FILE))) \
+          $(PROJECT_CREATOR_ARGS) -projectFileName $(call FixPath, $(VCPROJ_FILE)) \
           $(LOG_INFO), \
   ))
 
   TARGETS += $(vcproj_file_TARGET)
 
< prev index next >