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 2014/04/23 16:45:15 UTC

[lucy-commits] [3/3] git commit: refs/heads/master - Adjust regen_charmonizer.pl after Clownfish removal

Adjust regen_charmonizer.pl after Clownfish removal


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

Branch: refs/heads/master
Commit: d4282a9a244444127cebd481a309603425cf59cb
Parents: 920dca8
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Wed Apr 23 16:40:52 2014 +0200
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Wed Apr 23 16:40:52 2014 +0200

----------------------------------------------------------------------
 devel/bin/regen_charmonizer.pl | 31 +++++--------------------------
 1 file changed, 5 insertions(+), 26 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/d4282a9a/devel/bin/regen_charmonizer.pl
----------------------------------------------------------------------
diff --git a/devel/bin/regen_charmonizer.pl b/devel/bin/regen_charmonizer.pl
index 53e4f2a..916c85a 100755
--- a/devel/bin/regen_charmonizer.pl
+++ b/devel/bin/regen_charmonizer.pl
@@ -38,30 +38,9 @@ my $MELD_EXE = catfile( $CHAZ_DIR, 'buildbin', 'meld.pl' );
 die("Couldn't find meld.pl at $MELD_EXE")
     if !-e $MELD_EXE;
 
-# Clownfish compiler.
-{
-    my $main = catfile(qw( clownfish compiler common charmonizer.main ));
-    my $out  = $main;
-    $out =~ s/\.main/.c/ or die "no match";
-    unlink $out;
-    system( $MELD_EXE, "--probes=", "--files=$main", "--out=$out" );
-}
-
-# Clownfish runtime.
-{
-    my $main = catfile(qw( clownfish runtime common charmonizer.main ));
-    my $out  = $main;
-    $out =~ s/\.main/.c/ or die "no match";
-    unlink $out;
-    system( $MELD_EXE, '--probes=', "--files=$main", "--out=$out" );
-}
-
-# Lucy core.
-{
-    my $main = catfile(qw( common charmonizer.main ));
-    my $out  = $main;
-    $out =~ s/\.main/.c/ or die "no match";
-    unlink $out;
-    system( $MELD_EXE, '--probes=', "--files=$main", "--out=$out" );
-}
+my $main = catfile(qw( common charmonizer.main ));
+my $out  = $main;
+$out =~ s/\.main/.c/ or die "no match";
+unlink $out;
+system( $MELD_EXE, '--probes=', "--files=$main", "--out=$out" );