From: <jsa...@us...> - 2009-01-19 19:18:56
|
Revision: 117 http://flexotask.svn.sourceforge.net/flexotask/?rev=117&view=rev Author: jsauerbach Date: 2009-01-19 19:18:54 +0000 (Mon, 19 Jan 2009) Log Message: ----------- Fix bad cut-and-paste typo that resulted in the TF Native Bridge library being an erroneous exact copy of the util library when exporting a runtime. Modified Paths: -------------- trunk/flexotask-editor/openRuntime-build.xml Modified: trunk/flexotask-editor/openRuntime-build.xml =================================================================== --- trunk/flexotask-editor/openRuntime-build.xml 2009-01-11 19:08:55 UTC (rev 116) +++ trunk/flexotask-editor/openRuntime-build.xml 2009-01-19 19:18:54 UTC (rev 117) @@ -14,7 +14,7 @@ <property name="full-tf-std" value="${open-runtime-directory}/JavaTraceGenerationLibrary/native/${tf-std}"/> <property name="tf-native" value="libTuningForkNativeBridge.so"/> <property name="full-tf-native" value="${open-runtime-directory}/JavaTraceGenerationViaNative/native/${tf-native}"/> - <fail message="${flexotask-util} so not found"> + <fail message="${flexotask-util} not found"> <condition><not><available file="${full-flexotask-util}"/></not></condition> </fail> <fail message="${tf-std} not found"> @@ -27,7 +27,7 @@ <zip destfile="openRuntimeProvider.zip"> <zipfileset filemode="775" file="${full-flexotask-util}" fullpath="bin/common/${flexotask-util}"/> <zipfileset filemode="775" file="${full-tf-std}" fullpath="bin/common/${tf-std}"/> - <zipfileset filemode="775" file="${full-flexotask-util}" fullpath="bin/common/${tf-native}"/> + <zipfileset filemode="775" file="${full-tf-native}" fullpath="bin/common/${tf-native}"/> </zip> </target> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |