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 2016/02/20 16:23:13 UTC

[2/2] lucy-clownfish git commit: Update Perl dist build target

Update Perl dist build target


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

Branch: refs/heads/master
Commit: 6366c49bd7921ce586ed797c8d01bde15257c86e
Parents: a6112d6
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Feb 20 15:38:32 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat Feb 20 15:56:54 2016 +0100

----------------------------------------------------------------------
 compiler/perl/buildlib/Clownfish/CFC/Build.pm | 17 +++++++++--------
 runtime/perl/buildlib/Clownfish/Build.pm      | 12 ++++++------
 2 files changed, 15 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/6366c49b/compiler/perl/buildlib/Clownfish/CFC/Build.pm
----------------------------------------------------------------------
diff --git a/compiler/perl/buildlib/Clownfish/CFC/Build.pm b/compiler/perl/buildlib/Clownfish/CFC/Build.pm
index 45e49b5..655d9f0 100644
--- a/compiler/perl/buildlib/Clownfish/CFC/Build.pm
+++ b/compiler/perl/buildlib/Clownfish/CFC/Build.pm
@@ -265,14 +265,15 @@ sub ACTION_dist {
     # the top-level $REPOS_ROOT.  Because some assets we need are outside this
     # directory, we need to copy them in.
     my %to_copy = (
-        '../../CONTRIBUTING' => 'CONTRIBUTING',
-        '../../LICENSE'      => 'LICENSE',
-        '../../NOTICE'       => 'NOTICE',
-        '../../README'       => 'README',
-        '../../lemon'        => 'lemon',
-        '../src'             => 'src',
-        '../include'         => 'include',
-        $CHARMONIZER_C       => 'charmonizer.c',
+        '../../CONTRIBUTING.md' => 'CONTRIBUTING.md',
+        '../../LICENSE'         => 'LICENSE',
+        '../../NOTICE'          => 'NOTICE',
+        '../../README.md'       => 'README.md',
+        '../../lemon'           => 'lemon',
+        '../src'                => 'src',
+        '../include'            => 'include',
+        '../modules'            => 'modules',
+        $CHARMONIZER_C          => 'charmonizer.c',
     );
     print "Copying files...\n";
     while (my ($from, $to) = each %to_copy) {

http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/6366c49b/runtime/perl/buildlib/Clownfish/Build.pm
----------------------------------------------------------------------
diff --git a/runtime/perl/buildlib/Clownfish/Build.pm b/runtime/perl/buildlib/Clownfish/Build.pm
index 83e1106..3778a2c 100644
--- a/runtime/perl/buildlib/Clownfish/Build.pm
+++ b/runtime/perl/buildlib/Clownfish/Build.pm
@@ -304,12 +304,12 @@ sub ACTION_dist {
     # the top-level $REPOS_ROOT.  Because some assets we need are outside this
     # directory, we need to copy them in.
     my %to_copy = (
-        '../../CONTRIBUTING' => 'CONTRIBUTING',
-        '../../LICENSE'      => 'LICENSE',
-        '../../NOTICE'       => 'NOTICE',
-        '../../README'       => 'README',
-        $CORE_SOURCE_DIR     => 'core',
-        $CHARMONIZER_C       => 'charmonizer.c',
+        '../../CONTRIBUTING.md' => 'CONTRIBUTING.md',
+        '../../LICENSE'         => 'LICENSE',
+        '../../NOTICE'          => 'NOTICE',
+        '../../README.md'       => 'README.md',
+        $CORE_SOURCE_DIR        => 'core',
+        $CHARMONIZER_C          => 'charmonizer.c',
     );
     print "Copying files...\n";
     while ( my ( $from, $to ) = each %to_copy ) {