瀏覽代碼

ZOOKEEPER-1949 recipes jar not included in the distribution package (Rakesh R via michim)

git-svn-id: https://svn.apache.org/repos/asf/zookeeper/trunk@1658888 13f79535-47bb-0310-9956-ffa450edef68
Michi Mutsuzaki 10 年之前
父節點
當前提交
c6bceab532
共有 2 個文件被更改,包括 5 次插入2 次删除
  1. 3 0
      CHANGES.txt
  2. 2 2
      src/recipes/build-recipes.xml

+ 3 - 0
CHANGES.txt

@@ -34,6 +34,9 @@ BUGFIXES:
   ZOOKEEPER-2074 Incorrect exit codes for "./zkCli.sh cmd arg" (surendra singh
   lilhore via michim)
 
+  ZOOKEEPER-1949 recipes jar not included in the distribution package (Rakesh R
+  via michim)
+
 IMPROVEMENTS:
   ZOOKEEPER-1660 Documentation for Dynamic Reconfiguration (Reed Wanderman-Milne via shralex)  
 

+ 2 - 2
src/recipes/build-recipes.xml

@@ -111,7 +111,7 @@
   <target name="jar" depends="compile" unless="skip.recipes">
     <echo message="recipes: ${name}"/>
     <jar
-      jarfile="${build.dir}/zookeeper-${version}-${name}.jar"
+      jarfile="${build.dir}/zookeeper-${version}-recipes-${name}.jar"
       basedir="${build.classes}"      
     />
   </target>
@@ -126,7 +126,7 @@
     <copy todir="${dist.dir}${package.share}/recipes/${name}" includeEmptyDirs="false"
           flatten="true">
       <fileset dir="${build.dir}">
-        <include name="zookeeper-${version}-${name}.jar" />
+        <include name="zookeeper-${version}-recipes-${name}.jar" />
       </fileset>
     </copy>
   </target>