summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2006-05-26 22:13:31 +0000
committerbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>2006-05-26 22:13:31 +0000
commit9e792382a8aceecf6714fae2650ab0517932ce80 (patch)
treeb36753fac3ac7b8828ce4e2250387152cf1f457e
parentc43c67195a60f1e002553cd8b2cf876903e3f801 (diff)
downloadedk2-9e792382a8aceecf6714fae2650ab0517932ce80.zip
edk2-9e792382a8aceecf6714fae2650ab0517932ce80.tar.gz
edk2-9e792382a8aceecf6714fae2650ab0517932ce80.tar.bz2
Fix some cleanall issues
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@299 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--Tools/Source/TianoTools/Common/build.xml2
-rw-r--r--Tools/Source/TianoTools/CustomizedCompress/build.xml2
-rw-r--r--Tools/Source/TianoTools/Pccts/antlr/build.xml4
-rw-r--r--Tools/Source/TianoTools/Pccts/dlg/build.xml4
-rw-r--r--build.xml2
5 files changed, 7 insertions, 7 deletions
diff --git a/Tools/Source/TianoTools/Common/build.xml b/Tools/Source/TianoTools/Common/build.xml
index 91cba35..a8cec23 100644
--- a/Tools/Source/TianoTools/Common/build.xml
+++ b/Tools/Source/TianoTools/Common/build.xml
@@ -100,7 +100,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<target name="cleanall" depends="init">
<echo message="Removing Object Files and the Library: CommonTools${ext_static}"/>
- <delete dir="${BUILD_DIR}">
+ <delete dir="${BUILD_DIR}" failonerror="false">
<fileset dir="${LIB_DIR}" includes="CommonTools${ext_static}"/>
</delete>
</target>
diff --git a/Tools/Source/TianoTools/CustomizedCompress/build.xml b/Tools/Source/TianoTools/CustomizedCompress/build.xml
index ff41a01..388550a 100644
--- a/Tools/Source/TianoTools/CustomizedCompress/build.xml
+++ b/Tools/Source/TianoTools/CustomizedCompress/build.xml
@@ -113,7 +113,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<target name="cleanall">
<echo message="Removing Object Files and the Library: CustomizedCompress${ext_static}"/>
- <delete dir="${BUILD_DIR}">
+ <delete dir="${BUILD_DIR}" failonerror="false">
<fileset dir="${LIB_DIR}" includes="CustomizedCompress${ext_static}"/>
</delete>
</target>
diff --git a/Tools/Source/TianoTools/Pccts/antlr/build.xml b/Tools/Source/TianoTools/Pccts/antlr/build.xml
index 9d8bd7c..3870cd3 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>
diff --git a/Tools/Source/TianoTools/Pccts/dlg/build.xml b/Tools/Source/TianoTools/Pccts/dlg/build.xml
index 74f31b0..2f030d2 100644
--- a/Tools/Source/TianoTools/Pccts/dlg/build.xml
+++ b/Tools/Source/TianoTools/Pccts/dlg/build.xml
@@ -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>
diff --git a/build.xml b/build.xml
index b285cb7..f4724fe 100644
--- a/build.xml
+++ b/build.xml
@@ -41,7 +41,7 @@ ant All
</subant>
</target>
- <target name="distclean" description="Remove everything not in the distribution.">
+ <target name="cleanall" description="Remove everything not in the distribution.">
<subant target="cleanall" inheritall="false">
<filelist refid="Pkg.Dirs"/>
</subant>