diff options
Diffstat (limited to 'Tools/Source/TianoTools/Pccts/antlr/build.xml')
-rw-r--r-- | Tools/Source/TianoTools/Pccts/antlr/build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Source/TianoTools/Pccts/antlr/build.xml b/Tools/Source/TianoTools/Pccts/antlr/build.xml index 9d8bd7c485..3870cd3245 100644 --- a/Tools/Source/TianoTools/Pccts/antlr/build.xml +++ b/Tools/Source/TianoTools/Pccts/antlr/build.xml @@ -126,14 +126,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. <if>
<equals arg1="${ToolChain}" arg2="msvc"/>
<then>
- <exec dir="${basedir}" executable="nmake" failonerror="TRUE">
+ <exec dir="${basedir}" executable="nmake" failonerror="FALSE">
<arg line="-f AntlrMS.mak distclean"/>
</exec>
</then>
<elseif>
<equals arg1="${ToolChain}" arg2="gcc"/>
<then>
- <exec dir="${basedir}" executable="make" failonerror="TRUE">
+ <exec dir="${basedir}" executable="make" failonerror="FALSE">
<arg line="-f makefile distclean"/>
</exec>
</then>
|