diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-26 22:13:31 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-26 22:13:31 +0000 |
commit | 9e792382a8aceecf6714fae2650ab0517932ce80 (patch) | |
tree | b36753fac3ac7b8828ce4e2250387152cf1f457e /Tools/Source/TianoTools/Common | |
parent | c43c67195a60f1e002553cd8b2cf876903e3f801 (diff) | |
download | edk2-platforms-9e792382a8aceecf6714fae2650ab0517932ce80.tar.xz |
Fix some cleanall issues
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@299 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source/TianoTools/Common')
-rw-r--r-- | Tools/Source/TianoTools/Common/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/Source/TianoTools/Common/build.xml b/Tools/Source/TianoTools/Common/build.xml index 91cba350d5..a8cec23ded 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>
|