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