[svn:parrot] r48227 - trunk/config/auto

NotFound at svn.parrot.org NotFound at svn.parrot.org
Fri Jul 30 07:07:00 UTC 2010


Author: NotFound
Date: Fri Jul 30 07:07:00 2010
New Revision: 48227
URL: https://trac.parrot.org/parrot/changeset/48227

Log:
update workaround for spurious \c in icu config, TT #1722 LaVolta++

Modified:
   trunk/config/auto/icu.pm

Modified: trunk/config/auto/icu.pm
==============================================================================
--- trunk/config/auto/icu.pm	Fri Jul 30 06:17:47 2010	(r48226)
+++ trunk/config/auto/icu.pm	Fri Jul 30 07:07:00 2010	(r48227)
@@ -312,7 +312,8 @@
         else {
             # on MacOS X there's sometimes an errornous \c at the end of the
             # output line. Remove it.
-            $icushared =~ s/\s\\c$//;
+            # see TT #1722
+            $icushared =~ s/\s\\c\s/ /g;
         }
     }
 


More information about the parrot-commits mailing list