1From 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 5 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 13Rebase 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 21--- a/Makefile.in 22+++ b/Makefile.in 23@@ -223,7 +223,7 @@ endif 24 %.8: %.txt bin/txt2man 25 @echo " [txt2man] $<" 26 @mkdir -p $(dir $@) 27- $(V) bin/txt2man -p -t $(basename $(notdir $<)) $< > $@ 28+ $(V) sh bin/txt2man -p -t $(basename $(notdir $<)) $< > $@ 29 30 #---------------------------------------------------------------- 31 32-- 332.7.4 34 35