File: Do-not-run-windows-and-mac-cleaning-tasks.patch

package info (click to toggle)
arduino 2%3A1.8.19%2Bdfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,960 kB
  • sloc: java: 26,464; python: 8,872; cpp: 3,573; xml: 1,237; sh: 551; perl: 90; ansic: 89; makefile: 53
file content (55 lines) | stat: -rw-r--r-- 1,724 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
From: Ignacio Losiggio <iglosiggio@gmail.com>
Date: Wed, 4 Apr 2018 12:56:08 -0300
Subject: Do not run windows and mac cleaning tasks

Forwarded: not-needed

The referenced folders are cleaned out while importing the source.
---
 build/build.xml | 19 +------------------
 1 file changed, 1 insertion(+), 18 deletions(-)

diff --git a/build/build.xml b/build/build.xml
index 01e94be..2c36c6e 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -358,15 +358,6 @@
   <!-- - - - - - - - -->
   <!-- Mac OS X      -->
   <!-- - - - - - - - -->
-  <target name="macosx-clean" depends="subprojects-clean" description="Clean Mac OS X build">
-    <delete dir="macosx/work" />
-    <delete dir="macosx/working_dir" />
-    <delete dir="macosx/working.dmg" />
-    <delete file="macosx/arduino-*.dmg" />
-    <delete>
-      <fileset dir="macosx" includes="arduino-*macosx*.zip"/>
-    </delete>
-  </target>
 
   <target name="macosx-checkos" unless="macosx">
     <echo>
@@ -956,14 +947,6 @@
   <!-- Windows       -->
   <!-- - - - - - - - -->
 
-  <target name="windows-clean" depends="subprojects-clean"
-	  description="Clean windows version">
-    <delete dir="windows/work" />
-    <delete>
-      <fileset dir="windows" includes="arduino-*windows*.zip"/>
-    </delete>
-  </target>
-
   <target name="windows-checkos" unless="windows">
     <echo>
       =======================================================
@@ -1220,7 +1203,7 @@
   <!-- - - - - - - - -->
 
   <target name="clean" description="Perform a spring cleaning"
-	  depends="linux-clean, windows-clean, macosx-clean, subprojects-clean">
+	  depends="linux-clean, subprojects-clean">
   </target>
 
   <target name="avr-toolchain-bundle" unless="light_bundle">