summaryrefslogtreecommitdiff
path: root/package/openjdk/patches/debug-javac.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-01-08 21:24:00 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-01-08 21:24:00 +0100
commit00cbc2bacb89b125b3ed447631cf84e892bb4b77 (patch)
tree672615fa6be75e9f3262bcb1beafd7a138f425a4 /package/openjdk/patches/debug-javac.patch
parentc29d4fda23a138b713591709ca5ee15c096d467d (diff)
parent1260f8dbf14a1b4edd3b7f37cd7b020f88b3a654 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/openjdk/patches/debug-javac.patch')
-rw-r--r--package/openjdk/patches/debug-javac.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/package/openjdk/patches/debug-javac.patch b/package/openjdk/patches/debug-javac.patch
deleted file mode 100644
index f130325ef..000000000
--- a/package/openjdk/patches/debug-javac.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- w-openjdk-6-1.orig/icedtea6-1.10.orig/javac.in 2011-02-23 23:32:18.635149341 +0100
-+++ w-openjdk-6-1/icedtea6-1.10/javac.in 2011-04-05 16:27:04.291962749 +0200
-@@ -37,6 +37,7 @@
- if ( -e "@abs_top_builddir@/native-ecj" )
- {
- my @ecj_args = gen_ecj_opts( \@ARGV );
-+ print 'Using native ecj';
- exec '@abs_top_builddir@/native-ecj', @ecj_parms, @ecj_args ;
- }
- elsif ( -e "@ECJ_JAR@" )
-@@ -45,6 +46,7 @@
- my @CLASSPATH = ('@ECJ_JAR@');
- push @CLASSPATH, split /:/, $ENV{"CLASSPATH"} if exists $ENV{"CLASSPATH"};
- $ENV{"CLASSPATH"} = join ':', @CLASSPATH;
-+ print 'Using ecj with java';
- exec '@JAVA@', 'org.eclipse.jdt.internal.compiler.batch.Main', @ecj_parms, @ecj_args;
- }
- else