Skip to content

Commit

Permalink
[parrot] fix p5regex support build
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Oct 20, 2013
1 parent 068d8b9 commit f4d8fd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/build/Makefile-Parrot.in
Expand Up @@ -704,12 +704,12 @@ $(NQP_LAUNCHER)$(BAT): $(PARROT_BUILD_DIR)/$(NQP_EXE) gen/parrot/nqp_launcher
$(PARROT_BUILD_DIR)/$(NQP_EXE): $(PARROT_BUILD_DIR)/$(NQP_PBC) $(PARROT_DLL_COPY)
cd $(PARROT_BUILD_DIR) && $(PBC_TO_EXE) -o$(NQP_EXE) $(NQP_PBC)

$(PARROT_BUILD_DIR)/$(P5QREGEX_PBC): $(PARROT_BUILD_DIR)/$(NQP_EXE) $(P5QREGEX_SOURCES)
$(P5QREGEX_PBC): $(PARROT_BUILD_DIR)/$(NQP_EXE) $(P5QREGEX_SOURCES)
$(PERL) tools/build/gen-cat.pl parrot $(P5QREGEX_SOURCES) > $(PARROT_BUILD_DIR)/$(P5QREGEX_COMBINED)
$(PARROT) --library=$(PARROT_BUILD_DIR) $(PARROT_BUILD_DIR)/$(NQP_PBC) \
--module-path=$(PARROT_BUILD_DIR) --setting-path=$(PARROT_BUILD_DIR) \
--target=pir --output=$(P5QREGEX_COMBINED_PIR) $(PARROT_BUILD_DIR)/$(P5QREGEX_COMBINED)
$(PARROT) --library=$(PARROT_BUILD_DIR) -o $(PARROT_BUILD_DIR)/$(P5QREGEX_PBC) $(P5QREGEX_COMBINED_PIR)
$(PARROT) --library=$(PARROT_BUILD_DIR) -o $(P5QREGEX_PBC) $(P5QREGEX_COMBINED_PIR)

@make_dllcopy@

Expand Down

0 comments on commit f4d8fd2

Please sign in to comment.