Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Fix make install up a bit. We avoid blowing away the original nqp.pbc…
Browse files Browse the repository at this point in the history
… and install nqprx.pbc instead.
  • Loading branch information
jnthn committed Oct 30, 2009
1 parent c489620 commit 62d1e7b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build/Makefile.in
Expand Up @@ -127,10 +127,13 @@ all: $(NQP_EXE)

install: all
$(MKPATH) $(DESTDIR)$(NQP_LANG_DIR)
$(CP) nqp.pbc $(DESTDIR)$(NQP_LANG_DIR)
$(CP) nqp.pbc $(DESTDIR)$(NQP_LANG_DIR)/nqprx.pbc
$(CP) $(P6REGEX_PBC) $(DESTDIR)$(PARROT_LIB_DIR)/library/$(P6REGEX_PBC)
$(CP) $(REGEX_PBC) $(DESTDIR)$(PARROT_LIB_DIR)/library/$(REGEX_PBC)
$(CP) $(HLL_PBC) $(DESTDIR)$(PARROT_LIB_DIR)/library/$(HLL_PBC)
$(MKPATH) $(DESTDIR)$(PARROT_BIN_DIR)
$(CP) $(NQP_EXE) $(DESTDIR)$(PARROT_BIN_DIR)
$(CHMOD) 755 $(DESTDIR)$(PARROT_BIN_DIR)/$(NQP_EXE)
$(CP) $(NQP_EXE) $(DESTDIR)$(PARROT_BIN_DIR)/nqprx$(EXE)
$(CHMOD) 755 $(DESTDIR)$(PARROT_BIN_DIR)/nqprx$(EXE)

stage0: $(STAGE0)
stage1: $(STAGE1)
Expand Down

0 comments on commit 62d1e7b

Please sign in to comment.