Gentoo Archives: gentoo-commits

From: "Ralph Sennhauser (sera)" <sera@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-java/tijmp/files: tijmp-0.8-respect-javacflags.patch
Date: Fri, 06 Jul 2012 10:55:44
Message-Id: 20120706105533.0A1CD2004C@flycatcher.gentoo.org
1 sera 12/07/06 10:55:33
2
3 Added: tijmp-0.8-respect-javacflags.patch
4 Log:
5 Respect JAVACFLAGS. Fixes buiding with JAVA_PKG_STRICT. #421697
6
7 (Portage version: 2.1.11.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-java/tijmp/files/tijmp-0.8-respect-javacflags.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tijmp/files/tijmp-0.8-respect-javacflags.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/tijmp/files/tijmp-0.8-respect-javacflags.patch?rev=1.1&content-type=text/plain
14
15 Index: tijmp-0.8-respect-javacflags.patch
16 ===================================================================
17 --- a/Makefile.am
18 +++ b/Makefile.am
19 @@ -18,7 +18,7 @@
20 java_files := $(foreach dir,$(dirs),$(find_files))
21 class_files := $(patsubst $(jdir)/%.java,%.class,$(java_files))
22
23 -JCFLAGS := -source 1.6 -encoding ISO-8859-1 -Xlint:unchecked -deprecation
24 +JCFLAGS := $(JAVACFLAGS) -encoding ISO-8859-1 -Xlint:unchecked -deprecation
25
26 # standard java compilation..
27 JAVACOMPILE := $(JAVAC) $(JCFLAGS) -sourcepath $(jdir) -d $(top_builddir)