summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Gilles <jgilles@multitech.com>2011-09-14 14:33:00 -0500
committerJesse Gilles <jgilles@multitech.com>2011-09-14 14:33:00 -0500
commita55b7ebd289142174a463e68b57a48bedace7edd (patch)
treeac2fa27050059c1fb7fba32b693c49978ce6fac2
parent25bbdbb161df63b080756d9e1a4ec31836f5fbb2 (diff)
drop ecj-bootstrap-native patch, it was merged in 2011.03 branch
-rw-r--r--multitech/recipes/ecj/ecj-bootstrap-native.bbappend5
-rwxr-xr-xmultitech/recipes/ecj/files/ecj.in16
2 files changed, 0 insertions, 21 deletions
diff --git a/multitech/recipes/ecj/ecj-bootstrap-native.bbappend b/multitech/recipes/ecj/ecj-bootstrap-native.bbappend
deleted file mode 100644
index 2a318b6..0000000
--- a/multitech/recipes/ecj/ecj-bootstrap-native.bbappend
+++ /dev/null
@@ -1,5 +0,0 @@
-# custom ecj.in - fix up javac wrapper script so it can compile classpath again
-FILESEXTRA := "${THISDIR}"
-FILESPATHBASE =. "${FILESEXTRA}:"
-
-PR .= ".corecdp1"
diff --git a/multitech/recipes/ecj/files/ecj.in b/multitech/recipes/ecj/files/ecj.in
deleted file mode 100755
index f8d97ac..0000000
--- a/multitech/recipes/ecj/files/ecj.in
+++ /dev/null
@@ -1,16 +0,0 @@
-COUNT=5
-END=0
-RETURNCODE=0
-
-while test "${COUNT}" -gt "${END}"
-do
- ${RUNTIME} -Xmx1024m -cp ${ECJ_JAR} org.eclipse.jdt.internal.compiler.batch.Main ${1+"$@"}
- RETURNCODE=${?}
- if test "${?}" -eq "${END}"
- then
- break
- fi
- COUNT=$(($COUNT-1))
-done
-
-exit ${RETURNCODE}