You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by nw...@apache.org on 2012/11/13 03:13:13 UTC

[lucy-commits] [15/16] git commit: refs/heads/master - Run flex with --nounistd

Run flex with --nounistd


Project: http://git-wip-us.apache.org/repos/asf/lucy/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy/commit/6506abbb
Tree: http://git-wip-us.apache.org/repos/asf/lucy/tree/6506abbb
Diff: http://git-wip-us.apache.org/repos/asf/lucy/diff/6506abbb

Branch: refs/heads/master
Commit: 6506abbb49e71ec1cacef0e98d8b861df32bbde1
Parents: 5090e65
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sun Nov 4 00:36:51 2012 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Mon Nov 12 20:07:42 2012 +0100

----------------------------------------------------------------------
 .../compiler/perl/buildlib/Clownfish/CFC/Build.pm  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/6506abbb/clownfish/compiler/perl/buildlib/Clownfish/CFC/Build.pm
----------------------------------------------------------------------
diff --git a/clownfish/compiler/perl/buildlib/Clownfish/CFC/Build.pm b/clownfish/compiler/perl/buildlib/Clownfish/CFC/Build.pm
index 1d576a8..9f30796 100644
--- a/clownfish/compiler/perl/buildlib/Clownfish/CFC/Build.pm
+++ b/clownfish/compiler/perl/buildlib/Clownfish/CFC/Build.pm
@@ -174,7 +174,7 @@ sub ACTION_lexers {
         next
             if $self->up_to_date( [ $l_file, @$y_files ],
             [ $c_file, $h_file ] );
-        system( 'flex', '-o', $c_file, "--header-file=$h_file", $l_file )
+        system( 'flex', '--nounistd', '-o', $c_file, "--header-file=$h_file", $l_file )
             and die "flex failed";
     }
 }