From 8e291af191339471c20292784ebb6de6122f4fc4 Mon Sep 17 00:00:00 2001 From: Cevat Bostancioglu <[email protected]> Date: Fri, 14 Jun 2019 18:47:25 +0300 Subject: [PATCH] kvmtool: add CFLAGS Variable and disable Werror
to avoid CFLAGS and warnings via command argument --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 030ff4e..e0a8b23 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,9 @@ # Define WERROR=0 to disable -Werror. # +WERROR=0 +CFLAGS += $(EXTRA_CFLAGS) + ifeq ($(strip $(V)),) E = @echo Q = @ -- 2.7.4
-- _______________________________________________ meta-virtualization mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-virtualization
