[svn:parrot] r38512 - in trunk: config/auto lib/Parrot

NotFound at svn.parrot.org NotFound at svn.parrot.org
Wed May 6 21:09:27 UTC 2009


Author: NotFound
Date: Wed May  6 21:09:26 2009
New Revision: 38512
URL: https://trac.parrot.org/parrot/changeset/38512

Log:
[configure] replace dots with underscores in archname, TT #645 rrauenza++

Modified:
   trunk/config/auto/arch.pm
   trunk/lib/Parrot/Configure.pm

Modified: trunk/config/auto/arch.pm
==============================================================================
--- trunk/config/auto/arch.pm	Wed May  6 19:16:47 2009	(r38511)
+++ trunk/config/auto/arch.pm	Wed May  6 21:09:26 2009	(r38512)
@@ -41,6 +41,9 @@
     my $archname = $conf->data->get('archname');
     my ( $cpuarch, $osname ) = split( /-/, $archname );
 
+    # This was added to convert IA64.ARCHREV_0 on HP-UX, TT #645
+    $archname =~ s|\.|_|g;
+
     if ($verbose) {
         print "determining operating system and cpu architecture\n";
         print "archname: <$archname>\n";

Modified: trunk/lib/Parrot/Configure.pm
==============================================================================
--- trunk/lib/Parrot/Configure.pm	Wed May  6 19:16:47 2009	(r38511)
+++ trunk/lib/Parrot/Configure.pm	Wed May  6 21:09:26 2009	(r38512)
@@ -323,6 +323,7 @@
         }
     }
     else {
+    	die $verbose_step_str;
         die q{Argument to verbose-step option must be comma-delimited string of valid configuration steps};
     }
     return %verbose_steps;


More information about the parrot-commits mailing list