diff options
author | Ralph Sennhauser <sera@gentoo.org> | 2014-07-14 18:10:59 +0000 |
---|---|---|
committer | Ralph Sennhauser <sera@gentoo.org> | 2014-07-14 18:10:59 +0000 |
commit | fa06b4dddd5c24f1dc21ce69b0542b7920e10687 (patch) | |
tree | 016eea6e0b83b7888b36373640a3537e82dd6dc6 /dev-java/ecj-gcj/files | |
parent | Version bump (diff) | |
download | gentoo-2-fa06b4dddd5c24f1dc21ce69b0542b7920e10687.tar.gz gentoo-2-fa06b4dddd5c24f1dc21ce69b0542b7920e10687.tar.bz2 gentoo-2-fa06b4dddd5c24f1dc21ce69b0542b7920e10687.zip |
Version bump
Remove old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 3C5CF75A)
Diffstat (limited to 'dev-java/ecj-gcj/files')
-rwxr-xr-x | dev-java/ecj-gcj/files/ecj-gcj-3.5 | 21 | ||||
-rwxr-xr-x | dev-java/ecj-gcj/files/ecj-gcj-3.6 | 21 |
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-java/ecj-gcj/files/ecj-gcj-3.5 b/dev-java/ecj-gcj/files/ecj-gcj-3.5 deleted file mode 100755 index bbb3225da88a..000000000000 --- a/dev-java/ecj-gcj/files/ecj-gcj-3.5 +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -# gcj-jdk installs /usr/bin/gcj-jdk symlink, depending on it would be circular -# so we fallback to gcc-config discovery -GIJ_BIN="/usr/bin/gij" -if [[ ! -f ${GIJ_BIN} ]]; then - GIJ_BIN="$(gcc-config -B)/gij" -fi -if [[ ! -f ${GIJ_BIN} ]]; then - echo "gij not found! check that gcc is compiled with gcj flag" - exit 1 -fi -# calling java-config would be an unnecessary slowdown here - -# we need to append user CLASSPATH otherwise it will be overriden by the -classpath parameter -# this breaks e.g. bootstrap of ant-core -ecj_cp="/usr/share/ecj-gcj-3.5/lib/ecj.jar" -if [[ -n "${CLASSPATH}" ]]; then - ecj_cp="${ecj_cp}:${CLASSPATH}" -fi - -${GIJ_BIN} -classpath "${ecj_cp}" org.eclipse.jdt.internal.compiler.batch.Main "${@}" diff --git a/dev-java/ecj-gcj/files/ecj-gcj-3.6 b/dev-java/ecj-gcj/files/ecj-gcj-3.6 deleted file mode 100755 index a9725e55b4bd..000000000000 --- a/dev-java/ecj-gcj/files/ecj-gcj-3.6 +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -# gcj-jdk installs /usr/bin/gcj-jdk symlink, depending on it would be circular -# so we fallback to gcc-config discovery -GIJ_BIN="/usr/bin/gij" -if [[ ! -f ${GIJ_BIN} ]]; then - GIJ_BIN="$(gcc-config -B)/gij" -fi -if [[ ! -f ${GIJ_BIN} ]]; then - echo "gij not found! check that gcc is compiled with gcj flag" - exit 1 -fi -# calling java-config would be an unnecessary slowdown here - -# we need to append user CLASSPATH otherwise it will be overriden by the -classpath parameter -# this breaks e.g. bootstrap of ant-core -ecj_cp="/usr/share/ecj-gcj-3.6/lib/ecj.jar" -if [[ -n "${CLASSPATH}" ]]; then - ecj_cp="${ecj_cp}:${CLASSPATH}" -fi - -${GIJ_BIN} -classpath "${ecj_cp}" org.eclipse.jdt.internal.compiler.batch.Main "${@}" |