You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by jo...@apache.org on 2011/05/30 19:07:50 UTC

[lucy-commits] svn commit: r1129261 - /incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm

Author: joes
Date: Mon May 30 17:07:50 2011
New Revision: 1129261

URL: http://svn.apache.org/viewvc?rev=1129261&view=rev
Log:
don't need cccldflags now that we're no longer exposing this to xs

Modified:
    incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm

Modified: incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm?rev=1129261&r1=1129260&r2=1129261&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm (original)
+++ incubator/lucy/trunk/perl/buildlib/Lucy/Build.pm Mon May 30 17:07:50 2011
@@ -164,9 +164,7 @@ sub ACTION_charmonizer {
 
     print "Building $CHARMONIZE_EXE_PATH...\n\n";
 
-    my $flags = $self->config('ccflags') . ' '
-        . $self->extra_ccflags . ' '
-            . $self->config('cccdlflags');
+    my $flags = $self->config('ccflags') . ' ' . $self->extra_ccflags;
 
     my $dir = getcwd();
     chdir $CHARMONIZER_ORIG_DIR;
@@ -185,9 +183,7 @@ sub ACTION_charmonizer_tests {
 
     print "Building Charmonizer Tests...\n\n";
 
-    my $flags = $self->config('ccflags') . ' '
-        . $self->extra_ccflags . ' '
-            . $self->config('cccdlflags') . " -I../perl";
+    my $flags = $self->config('ccflags') . ' ' . $self->extra_ccflags . ' -I../perl';
 
     my $dir = getcwd();
     chdir $CHARMONIZER_ORIG_DIR;