]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Fix some cleanall issues
authorbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 26 May 2006 22:13:31 +0000 (22:13 +0000)
committerbbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 26 May 2006 22:13:31 +0000 (22:13 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@299 6f19259b-4bc3-4df7-8a09-765794883524

Tools/Source/TianoTools/Common/build.xml
Tools/Source/TianoTools/CustomizedCompress/build.xml
Tools/Source/TianoTools/Pccts/antlr/build.xml
Tools/Source/TianoTools/Pccts/dlg/build.xml
build.xml

index 91cba350d5164d159911b2fa744de5aeffcc53e7..a8cec23ded25c34f3f8ea7205855186747c50657 100644 (file)
@@ -100,7 +100,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   <target name="cleanall" depends="init">\r
     <echo message="Removing Object Files and the Library: CommonTools${ext_static}"/>  \r
-    <delete dir="${BUILD_DIR}">\r
+    <delete dir="${BUILD_DIR}" failonerror="false">\r
       <fileset dir="${LIB_DIR}" includes="CommonTools${ext_static}"/>\r
     </delete>\r
   </target>\r
index ff41a011dd4d0b6738c38b2c09ed839a5f860045..388550a651e76c24721f2c2fbe1266ee47b504c4 100644 (file)
@@ -113,7 +113,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 \r
   <target name="cleanall">\r
     <echo message="Removing Object Files and the Library: CustomizedCompress${ext_static}"/>  \r
-    <delete dir="${BUILD_DIR}">\r
+    <delete dir="${BUILD_DIR}" failonerror="false">\r
       <fileset dir="${LIB_DIR}" includes="CustomizedCompress${ext_static}"/>\r
     </delete>\r
   </target>\r
index 9d8bd7c485e388827160ea2fd1124e4639bc6254..3870cd32459e72825d9d9f9955022992e70efd0c 100644 (file)
@@ -126,14 +126,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     <if>\r
       <equals arg1="${ToolChain}" arg2="msvc"/>\r
                        <then>\r
-         <exec dir="${basedir}" executable="nmake" failonerror="TRUE">\r
+         <exec dir="${basedir}" executable="nmake" failonerror="FALSE">\r
                  <arg line="-f AntlrMS.mak distclean"/>\r
                </exec>\r
                  </then>\r
                <elseif>\r
       <equals arg1="${ToolChain}" arg2="gcc"/>\r
                        <then>\r
-         <exec dir="${basedir}" executable="make" failonerror="TRUE">\r
+         <exec dir="${basedir}" executable="make" failonerror="FALSE">\r
                  <arg line="-f makefile distclean"/>\r
                </exec>\r
                  </then>\r
index 74f31b01b4e1616475636252061d13080ba39f26..2f030d25592ba11847316622ca07ffb2bef2c422 100644 (file)
@@ -127,14 +127,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     <if>\r
       <equals arg1="${ToolChain}" arg2="msvc"/>\r
                        <then>\r
-         <exec dir="${basedir}" executable="nmake" failonerror="TRUE">\r
+         <exec dir="${basedir}" executable="nmake" failonerror="FALSE">\r
                  <arg line="-f DlgMS.mak distclean"/>\r
                </exec>\r
                  </then>\r
                <elseif>\r
       <equals arg1="${ToolChain}" arg2="gcc"/>\r
                        <then>\r
-         <exec dir="${basedir}" executable="make" failonerror="TRUE">\r
+         <exec dir="${basedir}" executable="make" failonerror="FALSE">\r
                  <arg line="-f makefile distclean"/>\r
                </exec>\r
                  </then>\r
index b285cb773c23810979a2abc57a7051a4107ebdc6..f4724fef825c26596edd30153a7b78b2c1c6c0e6 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -41,7 +41,7 @@ ant All
     </subant>\r
   </target>\r
 \r
-  <target name="distclean" description="Remove everything not in the distribution.">\r
+  <target name="cleanall" description="Remove everything not in the distribution.">\r
     <subant target="cleanall" inheritall="false">\r
       <filelist refid="Pkg.Dirs"/>\r
     </subant>\r