Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-braley authored Nov 27, 2023
1 parent 283a9d7 commit e742c86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions make/Images.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ifeq ($(BUILD_CDS_ARCHIVE), true)
endif

$(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \
$(call DependOnVariable, JDK_MODULES_LIST) $(BASE_RELEASE_FILE)
$(call DependOnVariable, JDK_MODULES_LIST) $(BASE_RELEASE_FILE) \
$(info Creating JDK image in $(JDK_IMAGE_DIR)) \
$(RM) -r $(JDK_IMAGE_DIR)
$(call ExecuteWithLog, $(SUPPORT_OUTPUTDIR)/images/jdk, \
Expand All @@ -106,15 +106,15 @@ $(JDK_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \
--output $(JDK_IMAGE_DIR) \
)
ifeq ($(BUILD_CDS_ARCHIVE), true)
$(info Dumping shared archive to $(JDK_IMAGE_DIR)/$(CDS_ARCHIVE))
$(info Dumping shared archive to $(JDK_IMAGE_DIR)/$(CDS_ARCHIVE)) \
$(JDK_IMAGE_DIR)/bin/java -Xshare:dump \
-XX:SharedArchiveFile=$(JDK_IMAGE_DIR)/$(CDS_ARCHIVE) \
-Xmx128M -Xms128M $(LOG_INFO)
endif
$(TOUCH) $@

$(JRE_IMAGE_DIR)/$(JIMAGE_TARGET_FILE): $(JMODS) \
$(call DependOnVariable, JRE_MODULES_LIST) $(BASE_RELEASE_FILE)
$(call DependOnVariable, JRE_MODULES_LIST) $(BASE_RELEASE_FILE) \
$(info Creating legacy JRE image in $(JRE_IMAGE_DIR)) \
$(RM) -r $(JRE_IMAGE_DIR)
$(call ExecuteWithLog, $(SUPPORT_OUTPUTDIR)/images/jre, \
Expand Down

0 comments on commit e742c86

Please sign in to comment.