aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpmichaud <pmichaud@pobox.com>2010-07-28 11:40:22 -0500
committerpmichaud <pmichaud@pobox.com>2010-07-28 11:40:22 -0500
commit049438dfb72a957a119d22636da87645f3736a5f (patch)
treeee0e2afdf475c96718af8e05b69dd3e1d5803695
parent63039f5ab30dec04023c477f3f36ac68262e3294 (diff)
Improve the Configure.pl closing method (Tene++ for noticing).
-rw-r--r--Makefile4
-rw-r--r--skel/Configure.pl6
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6cfb74b..c94817e 100644
--- a/Makefile
+++ b/Makefile
@@ -47,8 +47,8 @@ version_check:
always:
-$(DISTDIR):
- cp -a skel $(DISTDIR)
+$(DISTDIR): always
+ cp -auv skel $(DISTDIR)
$(PARROT_DIR): $(PARROT_TGZ)
tar -C $(DISTDIR) -xvzf $(PARROT_TGZ)
diff --git a/skel/Configure.pl b/skel/Configure.pl
index a0e687e..6a3c87b 100644
--- a/skel/Configure.pl
+++ b/skel/Configure.pl
@@ -96,9 +96,9 @@ END
print <<"END";
You can now use '$make' to build Rakudo Perl.
-After that, you can use '$make test' to run some local tests,
-or '$make spectest' to check out (via svn) a copy of the Perl 6
-official test suite and run its tests.
+After that, you can use '$make rakudo-test' to run some local tests,
+or '$make install' to create a 'perl6' executable in the local directory
+and in $config{'bindir'}/perl6 .
END
exit 0;