[svn:ponie] rev 288 - trunk

[email protected] 16 Jun 2005 11:21:12 -0000
Newsgroups perl.ponie.changes
Message-ID <[email protected]>
Author: nicholas
Date: Thu Jun 16 04:21:12 2005
New Revision: 288

Modified:
   trunk/Makefile
Log:
Prevent installing as root by default
Use test_harness rather than test for running perl's tests


Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	(original)
+++ trunk/Makefile	Thu Jun 16 04:21:12 2005
@@ -51,12 +51,13 @@ realclean:
 	rm -f ponie
 
 install:
+	@perl -e 'die q-Remove this line if you are sure you want to run make install as root- if !$$>;'
 	cd parrot && make install
 	cd perl && make install
 
 test:
 	cd parrot && make -k test
-	cd perl && make test
+	cd perl && env HARNESS_OK_SLOW=1 make test_harness
 
 .DEFAULT:
 	cd parrot && $(MAKE) $?