From 31d88f46bfc67de2659991674253a5d5dfb92afc Mon Sep 17 00:00:00 2001
|
From: Khem Raj <raj.khem@gmail.com>
|
Date: Wed, 12 Aug 2020 12:00:29 -0700
|
Subject: [PATCH] Makefile: Do not set -Werror
|
|
clang finds more warnings which causes build to fail, disable treating
|
warning as errors
|
|
Upstream-Status: Inappropriate [OE-Specific]
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
---
|
usr/Makefile | 2 +-
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
diff --git a/usr/Makefile b/usr/Makefile
|
index 21bb154..0018605 100644
|
--- a/usr/Makefile
|
+++ b/usr/Makefile
|
@@ -35,7 +35,7 @@ endif
|
PKG_CONFIG = /usr/bin/pkg-config
|
|
CFLAGS ?= -O2 -g
|
-WARNFLAGS ?= -Wall -Wextra -Werror -Wstrict-prototypes -fno-common
|
+WARNFLAGS ?= -Wall -Wextra -Wstrict-prototypes -fno-common
|
CFLAGS += $(WARNFLAGS) -I../include -I. -D_GNU_SOURCE \
|
-I$(TOPDIR)/libopeniscsiusr
|
CFLAGS += $(shell $(PKG_CONFIG) --cflags libkmod)
|
--
|
2.28.0
|