You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by an...@apache.org on 2014/04/30 06:17:48 UTC

svn commit: r1591190 - /ant/core/trunk/build.xml

Author: antoine
Date: Wed Apr 30 04:17:48 2014
New Revision: 1591190

URL: http://svn.apache.org/r1591190
Log:
fixing syntax error, only one condition is supported inside the condition task

Modified:
    ant/core/trunk/build.xml

Modified: ant/core/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/core/trunk/build.xml?rev=1591190&r1=1591189&r2=1591190&view=diff
==============================================================================
--- ant/core/trunk/build.xml (original)
+++ ant/core/trunk/build.xml Wed Apr 30 04:17:48 2014
@@ -1204,8 +1204,10 @@
   </target>
 
   <condition property="buildosxpackage">
-    <os family="mac"/>
-    <isset property="buildosxpackage.required"/>
+    <and>
+       <os family="mac"/>
+       <isset property="buildosxpackage.required"/>
+    </and>
   </condition>
 
   <target name="pkg_distribution" depends="zip_distribution" if="buildosxpackage">