diff options
author | Richard Leitner <richard.leitner@skidata.com> | 2020-08-20 09:41:33 +0200 |
---|---|---|
committer | Richard Leitner <richard.leitner@skidata.com> | 2020-08-20 15:11:36 +0200 |
commit | bbddc403d6c81d87eed9c92cc6b97aa423ee0d71 (patch) | |
tree | ccca925fe88462f1ae2ccd36b298e7f325928806 /recipes-core/openjdk/patches-openjdk-8/1013-hotspot-make-disable-Werror.patch | |
parent | c378afb3b58ce7d03028998da9b71cde69cc4610 (diff) | |
download | meta-java-bbddc403d6c81d87eed9c92cc6b97aa423ee0d71.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.patch | 14 |
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 @@ | |||
1 | diff -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 | ||