summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorLars Kanis <lars@greiz-reinsdorf.de>2022-09-09 19:32:20 +0200
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-10 09:32:27 +0900
commit518301883edee12218657c77ba977e2bde1b17d0 (patch)
tree295306ca9bc00ec7eab203966d6f0fff40c22fe5 /template
parent5b5c627d37c1773dd280e0f14d9510f8fa8db04f (diff)
downloadruby-518301883edee12218657c77ba977e2bde1b17d0.tar.gz
Fix parallel build on MINGW
When the build is running with a base ruby then generating `x64-ucrt-ruby320.rc` could fail due to a missing dependency to `x64-mingw-ucrt-fake.rb`. This commit adds this dependency. A failing build looks like so: ``` generating x64-mingw-ucrt-fake.rb generating x64-ucrt-ruby320.rc ../snapshot-master/win32/resource.rb:in `require': cannot load such file -- ./x64-mingw-ucrt-fake (LoadError) make: *** [GNUmakefile:57: x64-ucrt-ruby320.rc] Error 1 make: *** Waiting for unfinished jobs.... linking miniruby.exe x64-mingw-ucrt-fake.rb updated ```
Diffstat (limited to 'template')
-rw-r--r--template/Makefile.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/template/Makefile.in b/template/Makefile.in
index 966170aa76..a644a92754 100644
--- a/template/Makefile.in
+++ b/template/Makefile.in
@@ -170,6 +170,7 @@ yes_baseruby = $(HAVE_BASERUBY:no=)
no_baseruby = $(HAVE_BASERUBY:yes=)
BOOTSTRAPRUBY = $(yes_baseruby:yes=$(BASERUBY)) $(no_baseruby:no=$(MINIRUBY))
BOOTSTRAPRUBY_OPT = $(yes_baseruby:yes=-r./$(arch)-fake)
+BOOTSTRAPRUBY_FAKE = $(yes_baseruby:yes=$(arch)-fake.rb)
COROUTINE_H = @X_COROUTINE_H@
COROUTINE_OBJ = $(COROUTINE_H:.h=.$(OBJEXT))