Skip to content

Commit 35c39f0

Browse files
committed
Use --setting-path flag to make sure we get the correct version of the setting during the bootstrap process.
1 parent 2d19edc commit 35c39f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/Makefile.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ $(STAGE2)/$(HLL_PBC): $(STAGE1_PBCS) $(STAGE2)/$(CORE_SETTING_PBC) $(HLL_SOURCES
318318
$(PERL) build/gen_how_pm.pl $(HLL_SOURCES) > $(STAGE2)/$(HLL_COMBINED)
319319
$(PARROT) --library=$(STAGE1) $(STAGE1)/$(NQP_PBC) \
320320
--target=pir --output=$(STAGE2)/$(HLL_COMBINED_PIR) \
321-
$(STAGE2)/$(HLL_COMBINED)
321+
--setting-path=$(STAGE2) $(STAGE2)/$(HLL_COMBINED)
322322
$(PARROT) --include=$(STAGE2) -o $(STAGE2)/$(HLL_PBC) \
323323
$(STAGE2)/$(HLL_COMBINED_PIR)
324324

@@ -327,7 +327,7 @@ $(STAGE2)/$(P6REGEX_PBC): $(STAGE1_PBCS) $(STAGE2)/$(CORE_SETTING_PBC) $(P6REGEX
327327
$(PERL) build/gen_how_pm.pl $(P6REGEX_SOURCES) > $(STAGE2)/$(P6REGEX_COMBINED)
328328
$(PARROT) --library=$(STAGE1) $(STAGE1)/$(NQP_PBC) \
329329
--target=pir --output=$(STAGE2)/$(P6REGEX_COMBINED_PIR) \
330-
$(STAGE2)/$(P6REGEX_COMBINED)
330+
--setting-path=$(STAGE2) $(STAGE2)/$(P6REGEX_COMBINED)
331331
$(PARROT) --include=$(STAGE2) -o $(STAGE2)/$(P6REGEX_PBC) \
332332
$(STAGE2)/$(P6REGEX_COMBINED_PIR)
333333

@@ -336,7 +336,7 @@ $(STAGE2)/$(NQP_PBC): $(STAGE0_PBCS) $(STAGE1)/$(CORE_SETTING_PBC) $(NQP_SOURCES
336336
$(PERL) build/gen_how_pm.pl $(NQP_SOURCES) > $(STAGE2)/$(NQP_COMBINED)
337337
$(PARROT) --library=$(STAGE1) $(STAGE1)/$(NQP_PBC) \
338338
--target=pir --output=$(STAGE2)/$(NQP_COMBINED_PIR) \
339-
$(STAGE2)/$(NQP_COMBINED)
339+
--setting-path=$(STAGE2) $(STAGE2)/$(NQP_COMBINED)
340340
$(PARROT) --include=$(STAGE2) -o $(STAGE2)/$(NQP_PBC) \
341341
$(STAGE2)/$(NQP_COMBINED_PIR)
342342

0 commit comments

Comments
 (0)