File: add-clean-target.patch

package info (click to toggle)
libjopendocument-java 1.3repack-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 7,868 kB
  • ctags: 13,669
  • sloc: java: 49,906; xml: 94; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 494 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Add a clean target
 Clean up build and dist directories.
Author: Pirate Praveen <praveen@debian.org>

Index: jOpenDocument/build.xml
===================================================================
--- jOpenDocument.orig/build.xml
+++ jOpenDocument/build.xml
@@ -104,5 +104,9 @@
 			<zipgroupfileset dir="lib" includes="*.jar" />
 		</jar>
 	</target>
+	<target name="clean">
+        	<delete dir="build"/>
+        	<delete dir="dist"/>
+    	</target>
 
 </project>