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/31 06:58:13 UTC

[lucy-commits] svn commit: r1129488 - /incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl

Author: joes
Date: Tue May 31 04:58:13 2011
New Revision: 1129488

URL: http://svn.apache.org/viewvc?rev=1129488&view=rev
Log:
brevity

Modified:
    incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl

Modified: incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl?rev=1129488&r1=1129487&r2=1129488&view=diff
==============================================================================
--- incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl (original)
+++ incubator/lucy/trunk/devel/bin/gen_charmonizer_makefiles.pl Tue May 31 04:58:13 2011
@@ -47,7 +47,7 @@ sub gen_win_obj {
 
 sub gen_unix_tests {
     my @src = @_;
-    my @test = map m!/(Test\w+)\.c$!, @src; # note the \w+ skips the first entry Test.c
+    my @test = map m!/(Test\w+)\.c$!, @src; # \w+ skips the first entry Test.c
     my @obj = gen_unix_obj @src;
     my $first_obj = shift @obj;
     my $rv = "";
@@ -61,7 +61,7 @@ EOT
 
 sub gen_win_tests {
     my @src = @_;
-    my @test = map m!/(Test\w+)\.c$!, @src; # note the \w+ skips the first entry Test.c
+    my @test = map m!/(Test\w+)\.c$!, @src; # \w+ skips the first entry Test.c
     $_ .= '.exe' for @test;
     my @obj = gen_win_obj @src;
     my $first_obj = shift @obj;