You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2008/02/14 13:03:19 UTC

svn commit: r627720 - /harmony/enhanced/drlvm/trunk/make/extra/apr.xml

Author: varlax
Date: Thu Feb 14 04:03:17 2008
New Revision: 627720

URL: http://svn.apache.org/viewvc?rev=627720&view=rev
Log:
Stop build if APR configure or make failed

Modified:
    harmony/enhanced/drlvm/trunk/make/extra/apr.xml

Modified: harmony/enhanced/drlvm/trunk/make/extra/apr.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/make/extra/apr.xml?rev=627720&r1=627719&r2=627720&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/make/extra/apr.xml (original)
+++ harmony/enhanced/drlvm/trunk/make/extra/apr.xml Thu Feb 14 04:03:17 2008
@@ -54,7 +54,7 @@
             </fileset>
         </chmod>
 
-        <exec executable="sh" dir="${apr.src}">
+        <exec executable="sh" dir="${apr.src}" failonerror="true">
             <arg value="./configure" />
         </exec>
         <replace file="${apr.src}/include/apr.h">
@@ -77,7 +77,7 @@
 
     <target name="-make-apr-unix" if="is.unix" depends="apr-configure">
         <!-- simply invoke make to let it build as the APR people suggest  -->
-        <exec executable="make" dir="${apr.src}"/>
+        <exec executable="make" dir="${apr.src}" failonerror="true"/>
     	<copy file="${apr.src}/.libs/libapr-1.a" todir="${drlvm.lib.dir}" />
     </target>