summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/patches-openjdk-8/1013-hotspot-make-disable-Werror.patch
diff options
context:
space:
mode:
authorRichard Leitner <richard.leitner@skidata.com>2020-08-20 09:41:33 +0200
committerRichard Leitner <richard.leitner@skidata.com>2020-08-20 14:01:17 +0200
commit927a58dbfded8de3f1fe9754ca38c6867fff79a2 (patch)
tree559b4e810035a1dee358743d45ded209b477de75 /recipes-core/openjdk/patches-openjdk-8/1013-hotspot-make-disable-Werror.patch
parent7483a6c981c85517bb39f03bf20bcce4e3ce3b5c (diff)
downloadmeta-java-927a58dbfded8de3f1fe9754ca38c6867fff79a2.tar.gz
openjdk-8: refresh patches
Refresh all openjdk8 patches as a preparation for the upcoming update. Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8/1013-hotspot-make-disable-Werror.patch')
-rw-r--r--recipes-core/openjdk/patches-openjdk-8/1013-hotspot-make-disable-Werror.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/1013-hotspot-make-disable-Werror.patch b/recipes-core/openjdk/patches-openjdk-8/1013-hotspot-make-disable-Werror.patch
deleted file mode 100644
index bc844be..0000000
--- a/recipes-core/openjdk/patches-openjdk-8/1013-hotspot-make-disable-Werror.patch
+++ /dev/null
@@ -1,14 +0,0 @@
1diff -r 12177d88b89c hotspot/make/linux/makefiles/gcc.make
2--- a/hotspot/make/linux/makefiles/gcc.make Thu Sep 26 07:17:41 2019 +0100
3+++ b/hotspot/make/linux/makefiles/gcc.make Wed Apr 29 10:56:10 2020 +0200
4@@ -200,8 +200,8 @@
5 CFLAGS += -pipe
6 endif
7
8-# Compiler warnings are treated as errors
9-WARNINGS_ARE_ERRORS = -Werror
10+# Compiler warnings are not treated as errors
11+WARNINGS_ARE_ERRORS = -Wno-error
12
13 ifeq ($(USE_CLANG), true)
14 # However we need to clean the code up before we can unrestrictedly enable this option with Clang