summaryrefslogtreecommitdiff
path: root/package/xvisor/0001-Makefile-Fix-oldconfig-make-target.patch
blob: f0566254709b2c00c981b59b0cd7d35c09dc72a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
From 99bbdc042ee4c92a13edcfeaf336aa755a199d0f Mon Sep 17 00:00:00 2001
From: Anup Patel <anup@brainfault.org>
Date: Sun, 11 Sep 2016 19:53:40 +0530
Subject: [PATCH] Makefile: Fix oldconfig make target

Use "-s" instead of "-o" option of "openconf/conf" tool because
the "-o" option does not generate all required openconf files.

Signed-off-by: Anup Patel <anup@brainfault.org>
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 149a682..e05e801 100644
--- a/Makefile
+++ b/Makefile
@@ -434,7 +434,7 @@ menuconfig:
 oldconfig:
 	$(V)mkdir -p $(OPENCONF_TMPDIR)
 	$(V)$(MAKE) -C tools/openconf oldconfig
-	./tools/openconf/conf -o $(OPENCONF_INPUT)
+	./tools/openconf/conf -s $(OPENCONF_INPUT)
 
 # Rule for "make savedefconfig"
 .PHONY: savedefconfig
-- 
2.4.11