summaryrefslogtreecommitdiffstats
path: root/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
diff options
context:
space:
mode:
authorDariusz Pelowski <dariusz.pelowski@gmail.com>2017-11-05 13:15:41 +0100
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-11-06 08:51:29 -0500
commit8cc50eae10a10f5aeaa681132889b2a6db8809bd (patch)
tree5bd519791a2207f2c8a102a651a9b4f7661f51bd /recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
parent71dc7faa0c7ceb9396e51bf7a77502c3781a54f2 (diff)
downloadmeta-virtualization-8cc50eae10a10f5aeaa681132889b2a6db8809bd.tar.gz
kvmtool: fix compilation errors
Fixed issues: Usage of makedev requires including <sys/sysmacros.h> otherwise the error is raised due to multiple definition in <sys/types.h>. Add include path to kernel headers required to get kvmtool compilatioin successful. Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch')
-rw-r--r--recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch b/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
new file mode 100644
index 00000000..262531ca
--- /dev/null
+++ b/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch
@@ -0,0 +1,29 @@
1From 977a4d41012d1814f5a5330cacc2e4944de387cc Mon Sep 17 00:00:00 2001
2From: Dariusz Pelowski <dariusz.pelowski@gmail.com>
3Date: Sun, 5 Nov 2017 12:39:21 +0100
4Subject: [PATCH 2/2] kvmtool: add EXTRA_CFLAGS variable
5
6to avoid CFLAGS overriding introduce new EXTRA_CFLAGS variable
7for setting via command argument
8
9Signed-off-by: Dariusz Pelowski <dariusz.pelowski@gmail.com>
10---
11 Makefile | 2 ++
12 1 file changed, 2 insertions(+)
13
14diff --git a/Makefile b/Makefile
15index 64a0a16..bca1b26 100644
16--- a/Makefile
17+++ b/Makefile
18@@ -2,6 +2,8 @@
19 # Define WERROR=0 to disable -Werror.
20 #
21
22+CFLAGS += $(EXTRA_CFLAGS)
23+
24 ifeq ($(strip $(V)),)
25 E = @echo
26 Q = @
27--
282.15.0
29