Author: tucu
Date: Fri Oct 7 16:34:51 2011
New Revision: 1180094
URL: http://svn.apache.org/viewvc?rev=1180094&view=rev
Log:
HDFS-2322. the build fails in Windows because commons-daemon TAR cannot be
fetched. (tucu)
Modified:
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml
Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt?rev=1180094&r1=1180093&r2=1180094&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt Fri Oct 7
16:34:51 2011
@@ -65,6 +65,8 @@ Trunk (unreleased changes)
HDFS-2294. Download of commons-daemon TAR should not be under target (tucu)
+ HDFS-2322. the build fails in Windows because commons-daemon TAR cannot be
fetched. (tucu)
+
BUG FIXES
HDFS-2287. TestParallelRead has a small off-by-one bug. (todd)
Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml?rev=1180094&r1=1180093&r2=1180094&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/pom.xml Fri Oct 7
16:34:51 2011
@@ -310,7 +310,7 @@
<goal>run</goal>
</goals>
<configuration>
- <target>
+ <target unless="windows.build">
<condition property="commons.daemon.os.name" value="darwin">
<os name="Mac OS X"/>
</condition>
@@ -353,6 +353,18 @@
<profiles>
<profile>
+ <id>windows</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <os>
+ <family>windows</family>
+ </os>
+ </activation>
+ <properties>
+ <windows.build>true</windows.build>
+ </properties>
+ </profile>
+ <profile>
<id>native</id>
<activation>
<activeByDefault>false</activeByDefault>