aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjnthn <jnthn@jnthn.net>2012-01-24 13:00:40 +0100
committerjnthn <jnthn@jnthn.net>2012-01-24 13:00:40 +0100
commit42bd9ab10c40c9407d841f48d5da10163df15d4b (patch)
tree0b2060177a1e6b0f2cbb3b3a38d7880461e056e9
parent7eea93b81b6601f8b73f3b49f453a05de03f1fe4 (diff)
Fix PARROT_REVISION handling; add NQP_REVISION copying too.
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index baad2e7..9d18ada 100644
--- a/Makefile
+++ b/Makefile
@@ -47,6 +47,7 @@ DISTTARGETS = \
$(RAKUDO_DIR) \
$(MODULES_DIR) \
$(BUILD_DIR)/PARROT_REVISION \
+ $(BUILD_DIR)/NQP_REVISION \
star-patches \
$(DISTDIR)/MANIFEST \
@@ -79,8 +80,11 @@ $(RAKUDO_DIR): $(RAKUDO_TGZ)
$(RAKUDO_TGZ):
wget --no-check-certificate https://github.com/downloads/rakudo/rakudo/$(RAKUDO_TGZ)
-$(BUILD_DIR)/PARROT_REVISION: $(RAKUDO_DIR) $(RAKUDO_DIR)/build/PARROT_REVISION
- cp $(RAKUDO_DIR)/build/PARROT_REVISION $(BUILD_DIR)
+$(BUILD_DIR)/PARROT_REVISION: $(NQP_DIR) $(NQP_DIR)/tools/build/PARROT_REVISION
+ cp $(NQP_DIR)/tools/build/PARROT_REVISION $(BUILD_DIR)
+
+$(BUILD_DIR)/NQP_REVISION: $(RAKUDO_DIR) $(RAKUDO_DIR)/tools/build/NQP_REVISION
+ cp $(RAKUDO_DIR)/tools/build/NQP_REVISION $(BUILD_DIR)
$(MODULES_DIR): always
mkdir -p $(MODULES_DIR)