blob: de934c19a8d61fd55eec2c00f2d3a8fb05bec6cd [file] [log] [blame]
Brad Bishop26bdd442019-08-16 17:08:17 -04001From 38397b42e2c3450c2aee20e6fb92f362db4e35ef Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Tue, 2 Jul 2019 13:20:39 +0800
4Subject: [PATCH] thin-provisioning-tools: use sh on path when invoking txt2man
Brad Bishop19323692019-04-05 15:28:33 -04005
6txt2man contains a test which might try to use ksh to run the script, so we
7avoid running /bin/sh.
8
9Upstream-Status: Inappropriate [oe specific]
10
11Signed-off-by: joe.slater <joe.slater@windriver.com>
12
Brad Bishop26bdd442019-08-16 17:08:17 -040013Rebase to 0.8.5
14Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
15---
16 Makefile.in | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/Makefile.in b/Makefile.in
20index 7c867b2..5303994 100644
Brad Bishop19323692019-04-05 15:28:33 -040021--- a/Makefile.in
22+++ b/Makefile.in
Brad Bishop26bdd442019-08-16 17:08:17 -040023@@ -223,7 +223,7 @@ endif
Brad Bishop19323692019-04-05 15:28:33 -040024 %.8: %.txt bin/txt2man
25 @echo " [txt2man] $<"
Brad Bishop26bdd442019-08-16 17:08:17 -040026 @mkdir -p $(dir $@)
Brad Bishop19323692019-04-05 15:28:33 -040027- $(V) bin/txt2man -p -t $(basename $(notdir $<)) $< > $@
28+ $(V) sh bin/txt2man -p -t $(basename $(notdir $<)) $< > $@
29
30 #----------------------------------------------------------------
31
Brad Bishop26bdd442019-08-16 17:08:17 -040032--
332.7.4
34