#1722: osx build failed caused by errant '\c'
-----------------------+----------------------------------------------------
Reporter: LaVolta | Type: bug
Status: reopened | Priority: normal
Milestone: | Component: build
Version: 2.6.0 | Severity: medium
Resolution: | Keywords: osx build icu
Lang: | Patch: applied
Platform: mac |
-----------------------+----------------------------------------------------
Changes (by jkeenan):
* status: closed => reopened
* resolution: fixed =>
Comment:
Reopened per post by Tom Christiansen on
[http://lists.parrot.org/pipermail/parrot-dev/2011-May/005888.html parrot-
dev].
{{{
$icushared =~ s/\s\\c\s/ /g;
}}}
That isn't good enough, because some of the strings you do that
to actually *end* in " \\c", so there is no whitespace following.
Therefore you need something more like
{{{
$icushared =~ s/\s\\c\s?/ /g;
}}}
At which point all builds fine. Until then, it fails.
--
Ticket URL: <https://trac.parrot.org/parrot/ticket/1722#comment:4>
Parrot <https://trac.parrot.org/parrot/>
Parrot Development
_______________________________________________
parrot-tickets mailing list
[email protected]
http://lists.parrot.org/mailman/listinfo/parrot-tickets