summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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}