File 0004-Relax-warnings.patch of Package gradle4_3_1
From 69aa3e14cae72c762964fc76920129958ddc3725 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= <kkaempf@suse.de>
Date: Mon, 2 Jan 2017 09:41:44 +0100
Subject: [PATCH 4/6] Relax warnings
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Description: resource-http produces lots of warnings and "-Werror"
makes them errors.
Author: Kai-Chung Yan (殷啟聰)
---
gradle/strictCompile.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gradle/strictCompile.gradle b/gradle/strictCompile.gradle
index b070602c5689..2c2f9d4c04fc 100644
--- a/gradle/strictCompile.gradle
+++ b/gradle/strictCompile.gradle
@@ -17,7 +17,7 @@
allprojects {
ext.strictCompile = {
tasks.withType(AbstractCompile) {
- options.compilerArgs << "-Werror" << "-Xlint:all" << "-Xlint:-options" << "-Xlint:-serial"
+ options.compilerArgs << "-Xlint:all" << "-Xlint:-options" << "-Xlint:-serial"
}
}
ext.strictCompileIgnoreDeprecations = {
--
2.14.3