mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
removes JAVAC_FLAGS from java/Makefile via patch and sets it via export JAVAC_CFLAGS="$(java-pkg_javac-args)" Closes: https://bugs.gentoo.org/936550 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37777 Signed-off-by: Sam James <sam@gentoo.org>
14 lines
390 B
Diff
14 lines
390 B
Diff
https://bugs.gentoo.org/936550
|
|
|
|
--- a/java/Makefile
|
|
+++ b/java/Makefile
|
|
@@ -4,8 +4,6 @@ FILES = libsvm/svm.class libsvm/svm_model.class libsvm/svm_node.class \
|
|
libsvm/svm_print_interface.class \
|
|
svm_train.class svm_predict.class svm_toy.class svm_scale.class
|
|
|
|
-#JAVAC = jikes
|
|
-JAVAC_FLAGS = -target 1.7 -source 1.7
|
|
JAVAC = javac
|
|
# JAVAC_FLAGS =
|
|
export CLASSPATH := .:$(CLASSPATH)
|