cvsuser 02/03/16 08:11:45
Modified: . Configure.pl
Log:
Patch from Nicholas Clark <[EMAIL PROTECTED]>: stops silly people
(such as me) running Configure with /usr/local/bin/perl (which is 5.004_05)
and not realising their mistake until the pmc subdirectory, where the first
qr// is encountered.
Syntax error messages don't tell you what you did wrong. This does:
/usr/local/bin/perl Configure.pl
Perl 5.00503 required--this is only version 5.00405, stopped at Configure.pl
line 10.
Revision Changes Path
1.97 +4 -2 parrot/Configure.pl
Index: Configure.pl
===================================================================
RCS file: /cvs/public/parrot/Configure.pl,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -w -r1.96 -r1.97
--- Configure.pl 5 Mar 2002 21:42:46 -0000 1.96
+++ Configure.pl 16 Mar 2002 16:11:45 -0000 1.97
@@ -2,11 +2,13 @@
#
# Configure.pl
#
-# $Id: Configure.pl,v 1.96 2002/03/05 21:42:46 brentdax Exp $
+# $Id: Configure.pl,v 1.97 2002/03/16 16:11:45 josh Exp $
#
# Author: Brent Dax
#
+require 5.005_03;
+
use strict;
use lib 'lib';
@@ -75,7 +77,7 @@
if($opt_version) {
print "Parrot Version $parrot_version Configure\n";
- print '$Id: Configure.pl,v 1.96 2002/03/05 21:42:46 brentdax Exp $' . "\n";
+ print '$Id: Configure.pl,v 1.97 2002/03/16 16:11:45 josh Exp $' . "\n";
exit;
}