summaryrefslogtreecommitdiff
path: root/debian/patches/java_ignore_nonexistent_files
diff options
context:
space:
mode:
authorLuca Falavigna <dktrkranz@ubuntu.com>2009-08-01 20:52:02 +0200
committerLuca Falavigna <dktrkranz@ubuntu.com>2009-08-01 20:52:02 +0200
commit4ef312e07bb9c774a89eb4b755feabfc151351a8 (patch)
treecbe5eac71a0b94ad96ac1dcbf21e5189a1555a10 /debian/patches/java_ignore_nonexistent_files
parent51ed09d22b333546228172433dcc41af1ea02645 (diff)
Adhere to DEP3
Diffstat (limited to 'debian/patches/java_ignore_nonexistent_files')
-rw-r--r--debian/patches/java_ignore_nonexistent_files17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/patches/java_ignore_nonexistent_files b/debian/patches/java_ignore_nonexistent_files
deleted file mode 100644
index 123b72c..0000000
--- a/debian/patches/java_ignore_nonexistent_files
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Check for file/symlink existence before trying to use it in Java().
-Upstream bug: http://scons.tigris.org/issues/show_bug.cgi?id=2207
-Debian bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=338232
-
-Index: scons-1.1.0/engine/SCons/Tool/javac.py
-===================================================================
---- scons-1.1.0.orig/engine/SCons/Tool/javac.py 2008-10-11 18:11:46.083270910 +0200
-+++ scons-1.1.0/engine/SCons/Tool/javac.py 2008-10-11 18:13:04.519739110 +0200
-@@ -94,6 +94,8 @@
- version = env.get('JAVAVERSION', '1.4')
- full_tlist = []
- for f in slist:
-+ if not os.path.exists(f.rfile().get_abspath()):
-+ continue
- tlist = []
- source_file_based = True
- pkg_dir = None