39 lines
1003 B
Diff
39 lines
1003 B
Diff
From 40575084a51619788a032ee4ee3698c47358575b Mon Sep 17 00:00:00 2001
|
|
From: Mat Booth
|
|
Date: Mon, 14 Aug 2017 14:19:48 +0100
|
|
Subject: Bug 520940 - ecj cannot be built since introduction of java 1.8
|
|
lambda syntax
|
|
|
|
Change-Id: Ib65c17e614d96de44416b0ede1f059c63df47130
|
|
Signed-off-by: Mat Booth <mat.booth@redhat.com>
|
|
---
|
|
org.eclipse.jdt.core/scripts/build.xml | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/org.eclipse.jdt.core/scripts/build.xml b/org.eclipse.jdt.core/scripts/build.xml
|
|
index 3fbdb3e..f7e951d 100644
|
|
--- a/org.eclipse.jdt.core/scripts/build.xml
|
|
+++ b/org.eclipse.jdt.core/scripts/build.xml
|
|
@@ -22,8 +22,8 @@
|
|
|
|
<javac srcdir="${basedir}" destdir="${output}"
|
|
debuglevel="lines,source"
|
|
- source="1.7"
|
|
- target="1.7">
|
|
+ source="1.8"
|
|
+ target="1.8">
|
|
<compilerarg line="-Xlint:none"/>
|
|
</javac>
|
|
|
|
@@ -43,4 +43,4 @@
|
|
</zip>
|
|
<delete dir="${output}" />
|
|
</target>
|
|
-</project>
|
|
\ No newline at end of file
|
|
+</project>
|
|
--
|
|
cgit v1.1
|
|
|
|
|