Author: millecker
Date: Thu Dec 12 07:55:05 2013
New Revision: 1550365
URL: http://svn.apache.org/r1550365
Log:
HAMA-808: Hama Pipes Testcase - Fixed missing ant property when cmake is missing
Modified:
hama/trunk/c++/pom.xml
Modified: hama/trunk/c++/pom.xml
URL:
http://svn.apache.org/viewvc/hama/trunk/c%2B%2B/pom.xml?rev=1550365&r1=1550364&r2=1550365&view=diff
==============================================================================
--- hama/trunk/c++/pom.xml (original)
+++ hama/trunk/c++/pom.xml Thu Dec 12 07:55:05 2013
@@ -70,11 +70,12 @@
<arg line="VERBOSE=1" />
</exec>
<!-- The second make is a workaround for
HADOOP-9215. It can
- be removed when version 2.6 of cmake is no
longer supported . -->
+ be removed when version 2.6 of cmake is no
longer supported . -->
<exec executable="make"
dir="${project.build.directory}/native" failonerror="true" />
</then>
<else>
- <echo>CMAKE is missing! Skipping native
build!</echo>
+ <echo>CMAKE is missing! Skipping native
build!</echo>
+ <property
name="ant.hama.pipes.examples.install" value="" />
</else>
</if>
</target>