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

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Fri Sep 3 12:22:08 UTC 2010


Author: jkeenan
Date: Fri Sep  3 12:22:08 2010
New Revision: 48772
URL: https://trac.parrot.org/parrot/changeset/48772

Log:
Further refinement of inline comment per doughera++.  See TT 854.

Modified:
   trunk/config/inter/progs.pm

Modified: trunk/config/inter/progs.pm
==============================================================================
--- trunk/config/inter/progs.pm	Fri Sep  3 11:07:30 2010	(r48771)
+++ trunk/config/inter/progs.pm	Fri Sep  3 12:22:08 2010	(r48772)
@@ -103,15 +103,15 @@
     $conf->debug("\nccflags: $ccflags\n");
 
     $linkflags = $conf->data->get('linkflags');
-    # The substitution below has no effect on most platforms but may be needed
-    # on Win32 with Strawberry Perl and other OSes.  See TT #854.
+    # Remove the path to the Perl library (from Win32 config).
+    # See TT #854.
     $linkflags =~ s/-libpath:\S+//g;
     $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');
-    # For substitution below, see comment above.
+    # For substitution below, see comment for $linkflags above.
     $ldflags =~ s/-libpath:\S+//g;
     $ldflags = integrate( $ldflags, $conf->options->get('ldflags') );
     $ldflags = prompt( "And your $ld flags for building shared libraries?", $ldflags )


More information about the parrot-commits mailing list