This is an automated email from the ASF dual-hosted git repository.

andor pushed a commit to annotated tag release-3.4.14-rc3
in repository https://gitbox.apache.org/repos/asf/zookeeper.git

commit 7238c4ff03413f61592aa6a7f204878d222fa6e3
Author: Andor Molnar <[email protected]>
AuthorDate: Wed Feb 20 12:57:54 2019 +0100

    Fix package target: need to copy src/packages folder on 3.4
    
    This was removed by mistake, but it's only needed on 3.4
    On master and 3.5 we don't ship redhat/debian files anymore.
    
    Author: Andor Molnar <[email protected]>
    
    Reviewers: [email protected]
    
    Closes #827 from anmolnar/fix_bin_package
---
 build.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index f758752..169a270 100644
--- a/build.xml
+++ b/build.xml
@@ -838,7 +838,11 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle">
       <copy todir="${dist.dir}/zookeeper-server/src/main/resources">
         <fileset file="${java.server.resources.dir}/pom.template"/>
       </copy>
-         
+
+      <copy todir="${dist.dir}/src" includeEmptyDirs="true">
+        <fileset dir="src" excludes="**/*.template **/docs/build/**/* 
**/ivy*.jar"/>
+      </copy>
+
       <chmod perm="ugo+x" type="file" parallel="false">
         <fileset dir="${dist.dir}/bin"/>
         <fileset dir="${dist.dir}/zookeeper-contrib/">

Reply via email to