summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524>2006-08-07 20:01:52 +0000
committerlhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524>2006-08-07 20:01:52 +0000
commit7f762c2d410a5cb46d0ff1a4f85f35290839d5e5 (patch)
treecbeade6d62d8d82e7f8f5206d7621c2128080ce4
parent7035cc32f91426fb2f992ce8954f9b817e4d380f (diff)
downloadedk2-7f762c2d410a5cb46d0ff1a4f85f35290839d5e5.zip
edk2-7f762c2d410a5cb46d0ff1a4f85f35290839d5e5.tar.gz
edk2-7f762c2d410a5cb46d0ff1a4f85f35290839d5e5.tar.bz2
[EDKT156][Closed] Re-ordered the build.xml files in the clean and cleanall targets. For cleanall, some of the Jar files could not be deleted if the TianoTools cleanall target had been executed first - this is due to the classpath being set in the TianoTools/build.xml file. All jar files will now be deleted when executing the cleanall target for build.xml in the Tools directory.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1207 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--Tools/build.xml34
1 files changed, 17 insertions, 17 deletions
diff --git a/Tools/build.xml b/Tools/build.xml
index 79b4569..14f5afc 100644
--- a/Tools/build.xml
+++ b/Tools/build.xml
@@ -89,31 +89,31 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<subant target="clean" inheritall="false">
<filelist dir="."
files="
+ Source/FrameworkWizard/build.xml
+ Source/Cpptasks/build.xml
+ Source/FrameworkTasks/build.xml
+ Source/GenBuild/build.xml
+ Source/PcdTools/build.xml
+ Source/Common/build.xml
+ Source/SurfaceArea/build.xml
Source/TianoTools/build.xml
- Source/FrameworkWizard/build.xml
- Source/Cpptasks/build.xml
- Source/FrameworkTasks/build.xml
- Source/GenBuild/build.xml
- Source/PcdTools/build.xml
- Source/Common/build.xml
- Source/SurfaceArea/build.xml
- "/>
+ "/>
</subant>
</target>
<target name="cleanall">
- <subant target="cleanall" inheritall="false">
+ <subant target="cleanall" inheritall="true">
<filelist dir="."
files="
+ Source/FrameworkWizard/build.xml
+ Source/Cpptasks/build.xml
+ Source/FrameworkTasks/build.xml
+ Source/GenBuild/build.xml
+ Source/PcdTools/build.xml
+ Source/Common/build.xml
+ Source/SurfaceArea/build.xml
Source/TianoTools/build.xml
- Source/FrameworkWizard/build.xml
- Source/Cpptasks/build.xml
- Source/FrameworkTasks/build.xml
- Source/GenBuild/build.xml
- Source/PcdTools/build.xml
- Source/Common/build.xml
- Source/SurfaceArea/build.xml
- "/>
+ "/>
</subant>
</target>
</project>