Author: michim
Date: Fri Apr 18 22:33:46 2014
New Revision: 1588585
URL: http://svn.apache.org/r1588585
Log:
ZOOKEEPER-1913. Invalid manifest files due to bogus revision property value (Raul Gutierrez
Segales via michim)
Modified:
zookeeper/branches/branch-3.4/CHANGES.txt
zookeeper/branches/branch-3.4/build.xml
Modified: zookeeper/branches/branch-3.4/CHANGES.txt
URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.4/CHANGES.txt?rev=1588585&r1=1588584&r2=1588585&view=diff
==============================================================================
--- zookeeper/branches/branch-3.4/CHANGES.txt (original)
+++ zookeeper/branches/branch-3.4/CHANGES.txt Fri Apr 18 22:33:46 2014
@@ -16,6 +16,9 @@ BUGFIXES:
ZOOKEEPER-1897. ZK Shell/Cli not processing commands (stack via michim)
+ ZOOKEEPER-1913. Invalid manifest files due to bogus revision property value
+ (Raul Gutierrez Segales via michim)
+
IMPROVEMENTS:
ZOOKEEPER-1575. adding .gitattributes to prevent CRLF and LF mismatches for
Modified: zookeeper/branches/branch-3.4/build.xml
URL: http://svn.apache.org/viewvc/zookeeper/branches/branch-3.4/build.xml?rev=1588585&r1=1588584&r2=1588585&view=diff
==============================================================================
--- zookeeper/branches/branch-3.4/build.xml (original)
+++ zookeeper/branches/branch-3.4/build.xml Fri Apr 18 22:33:46 2014
@@ -531,7 +531,7 @@ xmlns:maven="antlib:org.apache.maven.art
<!-- ====================================================== -->
<target name="jar" depends="compile">
<java classname="org.apache.zookeeper.Version" fork="true"
- outputproperty="revision" failonerror="true">
+ outputproperty="revision" errorproperty="revision.error" failonerror="true">
<arg value="--revision" />
<classpath>
<pathelement path="${build.classes}" />
|