]> git.proxmox.com Git - pve-kernel.git/blob - patches/kernel/0233-objtool-use-sh-to-invoke-sync-check.sh-in-the-Makefi.patch
KPTI: add follow-up fixes
[pve-kernel.git] / patches / kernel / 0233-objtool-use-sh-to-invoke-sync-check.sh-in-the-Makefi.patch
1 From a87e8a4126593de7ea94dcc2695f6cd879656c26 Mon Sep 17 00:00:00 2001
2 From: Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
3 Date: Sat, 6 Jan 2018 17:50:34 -0200
4 Subject: [PATCH 233/241] objtool: use sh to invoke sync-check.sh in the
5 Makefile
6 MIME-Version: 1.0
7 Content-Type: text/plain; charset=UTF-8
8 Content-Transfer-Encoding: 8bit
9
10 CVE-2017-5754
11
12 This avoids build failures when building debian packages.
13
14 Signed-off-by: Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
15 (cherry picked from commit 6abf30ed000f0da24985295c206cc6f08a311301)
16 Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
17 ---
18 tools/objtool/Makefile | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21 diff --git a/tools/objtool/Makefile b/tools/objtool/Makefile
22 index 5c71bae01064..fe022f68638d 100644
23 --- a/tools/objtool/Makefile
24 +++ b/tools/objtool/Makefile
25 @@ -44,7 +44,7 @@ $(OBJTOOL_IN): fixdep FORCE
26 @$(MAKE) $(build)=objtool
27
28 $(OBJTOOL): $(LIBSUBCMD) $(OBJTOOL_IN)
29 - @./sync-check.sh
30 + @sh ./sync-check.sh
31 $(QUIET_LINK)$(CC) $(OBJTOOL_IN) $(LDFLAGS) -o $@
32
33
34 --
35 2.14.2
36