File: add_clean_target

package info (click to toggle)
texhyphj 1.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 448 kB
  • sloc: java: 2,033; xml: 297; makefile: 24
file content (18 lines) | stat: -rw-r--r-- 492 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 (ant) clean target
 Upstream did not have a clean target, which is required for java-helper to work
 reliably.
Author: Sebastian Humenda <shumenda@gmx.de>
Last-Update: <2017-11-23>

Index: texhyphj/build.xml
===================================================================
--- texhyphj.orig/build.xml
+++ texhyphj/build.xml
@@ -89,4 +89,7 @@
     	</zip>
 	</target>
 
+    <target name="clean">
+        <delete dir="ant-build/output"/>
+    </target>
 </project>