sf-check-env - Fixed typo causing build to always halt if 'sf.suppress.buildenv.check' isn't set.
--- a/common/build.xml Wed Oct 07 10:36:41 2009 +0100
+++ b/common/build.xml Wed Oct 07 14:12:03 2009 +0100
@@ -130,12 +130,12 @@
<condition>
<not>
<or>
- <equals arg1="sf.checkenv.exit" arg2="0"/>
+ <equals arg1="${sf.checkenv.exit}" arg2="0"/>
<isset property="sf.suppress.buildenv.check"/>
</or>
</not>
</condition>
-Build Environment Check failed. To stop this failure aborting the build set property sf.suppress.buildenv.check to any value.
+Build Environment Check failed (${sf.checkenv.exit}). To stop this failure aborting the build set property sf.suppress.buildenv.check to any value.
</fail>
</target>