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:25:11 UTC

lucy git commit: Update Perl dist build target

Repository: lucy
Updated Branches:
  refs/heads/master cd2d01960 -> 8886a2b93


Update Perl dist build target


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

Branch: refs/heads/master
Commit: 8886a2b932f453184a42a5cad8623c7dd14de627
Parents: cd2d019
Author: Nick Wellnhofer <we...@aevum.de>
Authored: Sat Feb 20 16:15:12 2016 +0100
Committer: Nick Wellnhofer <we...@aevum.de>
Committed: Sat Feb 20 16:21:01 2016 +0100

----------------------------------------------------------------------
 perl/buildlib/Lucy/Build.pm | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy/blob/8886a2b9/perl/buildlib/Lucy/Build.pm
----------------------------------------------------------------------
diff --git a/perl/buildlib/Lucy/Build.pm b/perl/buildlib/Lucy/Build.pm
index 2334a66..d727830 100644
--- a/perl/buildlib/Lucy/Build.pm
+++ b/perl/buildlib/Lucy/Build.pm
@@ -282,16 +282,17 @@ sub ACTION_dist {
     # bunch of stuff.  After the tarball is packaged up, we delete the copied
     # directories.
     my %to_copy = (
-        '../core'         => 'core',
-        '../modules'      => 'modules',
-        '../devel'        => 'devel',
-        '../lemon'        => 'lemon',
-        '../CHANGES'      => 'CHANGES',
-        '../CONTRIBUTING' => 'CONTRIBUTING',
-        '../LICENSE'      => 'LICENSE',
-        '../NOTICE'       => 'NOTICE',
-        '../README'       => 'README',
-        $CHARMONIZER_C    => 'charmonizer.c',
+        '../core'                          => 'core',
+        '../modules'                       => 'modules',
+        '../devel'                         => 'devel',
+        '../lemon'                         => 'lemon',
+        '../common/sample/us_constitution' => 'sample/us_constitution',
+        '../CHANGES'                       => 'CHANGES',
+        '../CONTRIBUTING'                  => 'CONTRIBUTING',
+        '../LICENSE'                       => 'LICENSE',
+        '../NOTICE'                        => 'NOTICE',
+        '../README'                        => 'README',
+        $CHARMONIZER_C                     => 'charmonizer.c',
     );
     print "Copying files...\n";
     while (my ($from, $to) = each %to_copy) {