[svn:parrot] r48758 - trunk/config/inter

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Thu Sep 2 02:05:54 UTC 2010


Author: jkeenan
Date: Thu Sep  2 02:05:53 2010
New Revision: 48758
URL: https://trac.parrot.org/parrot/changeset/48758

Log:
Resolve http://trac.parrot.org/parrot/ticket/854.  Delete two needless regex substitutions in linkflags and ldflags settings.

Modified:
   trunk/config/inter/progs.pm

Modified: trunk/config/inter/progs.pm
==============================================================================
--- trunk/config/inter/progs.pm	Thu Sep  2 01:31:06 2010	(r48757)
+++ trunk/config/inter/progs.pm	Thu Sep  2 02:05:53 2010	(r48758)
@@ -103,13 +103,11 @@
     $conf->debug("\nccflags: $ccflags\n");
 
     $linkflags = $conf->data->get('linkflags');
-    $linkflags =~ s/-libpath:\S+//g;    # TT #854: No idea why.
     $linkflags = integrate( $linkflags, $conf->options->get('linkflags') );
     $linkflags = prompt( "And flags for your linker?", $linkflags ) if $ask;
     $conf->data->set( linkflags => $linkflags );
 
     $ldflags = $conf->data->get('ldflags');
-    $ldflags =~ s/-libpath:\S+//g;      # TT #854: No idea why.
     $ldflags = integrate( $ldflags, $conf->options->get('ldflags') );
     $ldflags = prompt( "And your $ld flags for building shared libraries?", $ldflags )
         if $ask;


More information about the parrot-commits mailing list