Skip to content

Commit

Permalink
[src] Fix make dependencies when creating apidefinition.rsp.
Browse files Browse the repository at this point in the history
We need to make sure the output directory exists before trying to create a
file there.
  • Loading branch information
rolfbjarne committed Jan 10, 2025
1 parent e7f4ff5 commit a0502a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ $($(2)_DOTNET_BUILD_DIR)/core-$(3).rsp: Makefile frameworks.sources | $($(2)_DOT
$($(2)_DOTNET_BUILD_DIR)/core-$(3).dll: $($(2)_DOTNET_CORE_SOURCES) $($(2)_DOTNET_BUILD_DIR)/core-$(3).rsp | $($(2)_DOTNET_BUILD_DIR)
$$(Q_DOTNET_GEN) $(DOTNET_CSC) @$($(2)_DOTNET_BUILD_DIR)/core-$(3).rsp

$($(2)_DOTNET_BUILD_DIR)/apidefinition-$(3).rsp: Makefile frameworks.sources
$($(2)_DOTNET_BUILD_DIR)/apidefinition-$(3).rsp: Makefile frameworks.sources | $($(2)_DOTNET_BUILD_DIR)
$$(Q_DOTNET_GEN) echo \
-debug \
-unsafe \
Expand Down

0 comments on commit a0502a7

Please sign in to comment.