python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / xvisor / 0001-Makefile-Fix-oldconfig-make-target.patch
blobf0566254709b2c00c981b59b0cd7d35c09dc72a9
1 From 99bbdc042ee4c92a13edcfeaf336aa755a199d0f Mon Sep 17 00:00:00 2001
2 From: Anup Patel <anup@brainfault.org>
3 Date: Sun, 11 Sep 2016 19:53:40 +0530
4 Subject: [PATCH] Makefile: Fix oldconfig make target
6 Use "-s" instead of "-o" option of "openconf/conf" tool because
7 the "-o" option does not generate all required openconf files.
9 Signed-off-by: Anup Patel <anup@brainfault.org>
10 Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
11 ---
12 Makefile | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
15 diff --git a/Makefile b/Makefile
16 index 149a682..e05e801 100644
17 --- a/Makefile
18 +++ b/Makefile
19 @@ -434,7 +434,7 @@ menuconfig:
20 oldconfig:
21 $(V)mkdir -p $(OPENCONF_TMPDIR)
22 $(V)$(MAKE) -C tools/openconf oldconfig
23 - ./tools/openconf/conf -o $(OPENCONF_INPUT)
24 + ./tools/openconf/conf -s $(OPENCONF_INPUT)
26 # Rule for "make savedefconfig"
27 .PHONY: savedefconfig
28 --
29 2.4.11