You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/04/26 06:29:46 UTC

[54/63] [abbrv] git commit: [flex-falcon] [refs/heads/develop] - fix wipes

fix wipes


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/0a08c2dc
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/0a08c2dc
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/0a08c2dc

Branch: refs/heads/develop
Commit: 0a08c2dcbc720132179963a0a5e9654b87e9cc70
Parents: a6d9512
Author: Alex Harui <ah...@apache.org>
Authored: Fri Apr 22 14:21:42 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Apr 22 14:21:42 2016 -0700

----------------------------------------------------------------------
 build.xml                      | 4 ++++
 compiler-build-tools/build.xml | 3 +--
 compiler-jburg-types/build.xml | 3 +--
 compiler-jx/build.xml          | 2 ++
 externs/GCL/build.xml          | 2 +-
 flex-compiler-oem/build.xml    | 8 +++++---
 6 files changed, 14 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0a08c2dc/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 74eb553..8510c18 100644
--- a/build.xml
+++ b/build.xml
@@ -120,11 +120,15 @@
     </target>
 
     <target name="wipe" description="Wipes out everything that didn't come from Git.">
+        <ant dir="compiler-build-tools" target="wipe"/>
+        <ant dir="compiler-jburg-types" target="wipe"/>
         <ant dir="compiler" target="wipe"/>
         <ant dir="compiler/src/tests" target="wipe"/>
     </target>
     
     <target name="wipe-all" description="Wipes out everything that didn't come from Git.">
+        <ant dir="compiler-build-tools" target="wipe"/>
+        <ant dir="compiler-jburg-types" target="wipe"/>
         <ant dir="compiler" target="wipe"/>
         <ant dir="compiler/src/test" target="wipe"/>
 		<ant dir="compiler-jx" target="super-clean"/>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0a08c2dc/compiler-build-tools/build.xml
----------------------------------------------------------------------
diff --git a/compiler-build-tools/build.xml b/compiler-build-tools/build.xml
index 72d7cf5..2366ecf 100644
--- a/compiler-build-tools/build.xml
+++ b/compiler-build-tools/build.xml
@@ -135,8 +135,7 @@
     </target>
 
     <target name="wipe" depends="clean" description="Wipes everything that didn't come from Git.">
-        <delete dir="${compiler}/lib"/>
-        <delete dir="${compiler}/utils"/>
+        <delete dir="${compiler}/target"/>
     </target>
 
  </project>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0a08c2dc/compiler-jburg-types/build.xml
----------------------------------------------------------------------
diff --git a/compiler-jburg-types/build.xml b/compiler-jburg-types/build.xml
index 6025603..5c98c8e 100644
--- a/compiler-jburg-types/build.xml
+++ b/compiler-jburg-types/build.xml
@@ -88,8 +88,7 @@
     </target>
 
     <target name="wipe" depends="clean" description="Wipes everything that didn't come from Git.">
-        <delete dir="${compiler}/lib"/>
-        <delete dir="${compiler}/utils"/>
+        <delete dir="${compiler}/target"/>
     </target>
 
  </project>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0a08c2dc/compiler-jx/build.xml
----------------------------------------------------------------------
diff --git a/compiler-jx/build.xml b/compiler-jx/build.xml
index 68a691d..577c29d 100644
--- a/compiler-jx/build.xml
+++ b/compiler-jx/build.xml
@@ -141,12 +141,14 @@
 
     <target name="thirdparty-clean">
         <ant antfile="${basedir}/src/main/resources/downloads.xml" dir="${basedir}" target="clean" />
+        <delete dir="${basedir}/target" />
         <delete failonerror="false" includeemptydirs="true">
             <fileset dir="${lib}" />
         </delete>
     </target>
 
     <target name="clean" >
+        <delete dir="${basedir}/target/classes" />
         <delete failonerror="false" includeemptydirs="true">
             <fileset dir="${lib}" >
                 <include name="compc.jar" />

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0a08c2dc/externs/GCL/build.xml
----------------------------------------------------------------------
diff --git a/externs/GCL/build.xml b/externs/GCL/build.xml
index bdf9429..3167b90 100644
--- a/externs/GCL/build.xml
+++ b/externs/GCL/build.xml
@@ -51,6 +51,6 @@
         <delete dir="${basedir}/target" failonerror="false" includeEmptyDirs="true"/>
     </target>
     
-    <target name="wipe">
+    <target name="wipe" depends="clean">
     </target>
 </project>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/0a08c2dc/flex-compiler-oem/build.xml
----------------------------------------------------------------------
diff --git a/flex-compiler-oem/build.xml b/flex-compiler-oem/build.xml
index 894b110..5e58d6a 100644
--- a/flex-compiler-oem/build.xml
+++ b/flex-compiler-oem/build.xml
@@ -235,9 +235,11 @@
     -->
 
     <target name="clean" description="clean">
-        <delete dir="${oem}/bin"/>
+        <delete dir="${oem}/target/classes"/>
+    </target>
+
+    <target name="wipe" depends="clean" >
+        <delete dir="${oem}/target"/>
     </target>
 
-    <target name="wipe" depends="clean" />
-    
 </project>