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
diff --git a/build.xml b/build.xml
index 4dc7ce2..8dc6f61 100644
--- a/build.xml
+++ b/build.xml
@@ -34,7 +34,7 @@
   </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>