You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2006/06/20 22:15:07 UTC

svn commit: r415790 - /incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml

Author: hindessm
Date: Tue Jun 20 13:15:07 2006
New Revision: 415790

URL: http://svn.apache.org/viewvc?rev=415790&view=rev
Log:
Fixing whitespace only.

Modified:
    incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml

Modified: incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml?rev=415790&r1=415789&r2=415790&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/modules/prefs/build.xml Tue Jun 20 13:15:07 2006
@@ -33,22 +33,22 @@
 
     <target name="test" depends="build, compile.tests, run.tests" />
 
-	<!-- Build natives. Currently there are only windows natives for
-	prefs, so we check if we are on a windows platform -->
-	<target name="build.native" if="is.windows">
-		<exec failonerror="true" 
-            executable="${make.command}" 
-            dir="${hy.prefs.src.main.native}/prefs/${hy.os}">
-        	<env key="HY_HDK" value="${hy.hdk}" />
+    <!-- Build natives. Currently there are only windows natives for
+	 prefs, so we check if we are on a windows platform -->
+    <target name="build.native" if="is.windows">
+	<exec failonerror="true" 
+              executable="${make.command}" 
+              dir="${hy.prefs.src.main.native}/prefs/${hy.os}">
+            <env key="HY_HDK" value="${hy.hdk}" />
         </exec>
-		
-		<!-- Copy the built shared libs over to the jre/bin dir -->
-		<copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+
+	<!-- Copy the built shared libs over to the jre/bin dir -->
+	<copy todir="${hy.jdk}/jre/bin" overwrite="yes">
             <fileset dir="${hy.prefs.src.main.native}/prefs">
                 <patternset includes="*${shlib.suffix}*" />
             </fileset>
         </copy>
-	</target>
+    </target>
 
     <target name="clean">
         <delete failonerror="false">
@@ -58,16 +58,16 @@
         </delete>
     </target>
 
-	<!-- Clean natives. Currently there are only windows natives for
-	prefs, so we check if we are on a windows platform -->
-	<target name="clean.native" if="is.windows">
-		<exec failonerror="true" 
-            executable="${make.command}" 
-            dir="${hy.prefs.src.main.native}/prefs/${hy.os}">
-        	<env key="HY_HDK" value="${hy.hdk}" />
-			<arg line="clean" />
+    <!-- Clean natives. Currently there are only windows natives for
+	 prefs, so we check if we are on a windows platform -->
+    <target name="clean.native" if="is.windows">
+	<exec failonerror="true" 
+              executable="${make.command}" 
+              dir="${hy.prefs.src.main.native}/prefs/${hy.os}">
+            <env key="HY_HDK" value="${hy.hdk}" />
+	    <arg line="clean" />
         </exec>
-	</target>
+    </target>
 
 
     <target name="compile.java">