Fix some cleanall issues

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@299 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bbahnsen
2006-05-26 22:13:31 +00:00
parent c43c67195a
commit 9e792382a8
5 changed files with 7 additions and 7 deletions

View File

@@ -127,14 +127,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 DlgMS.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>