Merge -r 1180093:1180094 from trunk to branch. FIXES: HDFS-2322
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1190582 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fa989c88fc
commit
040013af9e
|
@ -749,6 +749,9 @@ Release 0.23.0 - Unreleased
|
|||
|
||||
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)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HDFS-1458. Improve checkpoint performance by avoiding unnecessary image
|
||||
|
|
|
@ -311,7 +311,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 @@
|
|||
</build>
|
||||
|
||||
<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>
|
||||
|
|
Loading…
Reference in New Issue