[svn:parrot] r43469 - trunk/runtime/parrot/library

fperrad at svn.parrot.org fperrad at svn.parrot.org
Fri Jan 15 16:06:56 UTC 2010


Author: fperrad
Date: Fri Jan 15 16:06:55 2010
New Revision: 43469
URL: https://trac.parrot.org/parrot/changeset/43469

Log:
[distutils] fix _has_strip when debugging

Modified:
   trunk/runtime/parrot/library/distutils.pir

Modified: trunk/runtime/parrot/library/distutils.pir
==============================================================================
--- trunk/runtime/parrot/library/distutils.pir	Fri Jan 15 15:05:07 2010	(r43468)
+++ trunk/runtime/parrot/library/distutils.pir	Fri Jan 15 16:06:55 2010	(r43469)
@@ -880,11 +880,11 @@
     $S0 = config['gccversion']
     unless $S0 goto L1
     unless has_cflags goto L2
-    $I0 = index cflags, '-g '
+    $I0 = index cflags, '-g'
     unless $I0 < 0 goto L1
   L2:
     $S0 = config['cflags']
-    $I0 = index $S0, '-g '
+    $I0 = index $S0, '-g'
     unless $I0 < 0 goto L1
     .return (1)
   L1:


More information about the parrot-commits mailing list