summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authordarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-25 23:24:17 +0000
committerdarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>2006-04-25 23:24:17 +0000
commit27f019223ce264f77c6db57a38018c46c6cb7a04 (patch)
tree2f190eb94cfa62f39bb5595b12776b22da525521 /build.xml
parent7fa7b1fe817e6478ba9d9b89318df9e20586342c (diff)
downloadedk2-27f019223ce264f77c6db57a38018c46c6cb7a04.zip
edk2-27f019223ce264f77c6db57a38018c46c6cb7a04.tar.gz
edk2-27f019223ce264f77c6db57a38018c46c6cb7a04.tar.bz2
The "distclean" target attempted to invoke the "distclean" target of the sub-projects. This target does not exist, instead "cleanall" is used.
Changed the subant invocation to use "cleanall" for the sub-projects. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@33 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 4dc7ce2..8dc6f61 100644
--- a/build.xml
+++ b/build.xml
@@ -34,7 +34,7 @@ It can build all packages or clean up the build products.
</target>
<target name="distclean" description="Remove everything not in the distribution.">
- <subant target="distclean" inheritall="false">
+ <subant target="cleanall" inheritall="false">
<filelist refid="Pkg.Dirs"/>
</subant>
</target>