You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/12/18 14:14:30 UTC

svn commit: r488266 - /harmony/enhanced/classlib/trunk/make/properties.xml

Author: tellison
Date: Mon Dec 18 05:14:30 2006
New Revision: 488266

URL: http://svn.apache.org/viewvc?view=rev&rev=488266
Log:
Reduce verbosity of 'make' on Windows builds.

Modified:
    harmony/enhanced/classlib/trunk/make/properties.xml

Modified: harmony/enhanced/classlib/trunk/make/properties.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/properties.xml?view=diff&rev=488266&r1=488265&r2=488266
==============================================================================
--- harmony/enhanced/classlib/trunk/make/properties.xml (original)
+++ harmony/enhanced/classlib/trunk/make/properties.xml Mon Dec 18 05:14:30 2006
@@ -166,6 +166,11 @@
     </condition>
     <property name="make.command" value="make" />
 
+    <condition property="make.arg" value="/nologo">
+        <isset property="is.windows"/>
+    </condition>
+    <property name="make.arg" value="" />
+
     <condition property="png.home" value="/usr/local">
         <isset property="is.freebsd"/>
     </condition>
@@ -322,6 +327,7 @@
                 <env key="HY_ARCH" value="${hy.arch}" />
                 <env key="HY_OS" value="${hy.os}" />
                 <env key="HY_PLATFORM" value="${hy.platform}" />
+                <arg line="${make.arg}" />
                 <arg line="@{target}" />
             </exec>
         </sequential>