summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/coreutils/coreutils-8.23/fix-for-dummy-man-usage.patch
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2015-01-04 13:40:55 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-01-16 23:08:20 +0000
commitce9cb7ae7a37d211fde7c41e42f36a649f9cd50a (patch)
tree2853b6eb96df9e0a702bb7548d948ee80650dfb2 /meta/recipes-core/coreutils/coreutils-8.23/fix-for-dummy-man-usage.patch
parentce5cc411bb29f41e2f001118313d19b6c48d8436 (diff)
downloadpoky-ce9cb7ae7a37d211fde7c41e42f36a649f9cd50a.tar.gz
coreutils: upgrade to 8.23
fix-for-dummy-man-usage.patch is rebased. (From OE-Core rev: 4fb3752824ff20e5b5b322e6e12211c81795313c) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/coreutils/coreutils-8.23/fix-for-dummy-man-usage.patch')
-rw-r--r--meta/recipes-core/coreutils/coreutils-8.23/fix-for-dummy-man-usage.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-core/coreutils/coreutils-8.23/fix-for-dummy-man-usage.patch b/meta/recipes-core/coreutils/coreutils-8.23/fix-for-dummy-man-usage.patch
new file mode 100644
index 0000000000..58b6a76130
--- /dev/null
+++ b/meta/recipes-core/coreutils/coreutils-8.23/fix-for-dummy-man-usage.patch
@@ -0,0 +1,31 @@
1Upstream-Status: Pending
2
3coreutils: fix for dummy-man usage
4
5The options should be before the final argument, otherwise, the following error
6would appear when compiling.
7
8"dummy-man: too many non-option arguments"
9
10Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
11---
12 man/local.mk | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/man/local.mk b/man/local.mk
16index ba8fbf7..3833458 100644
17--- a/man/local.mk
18+++ b/man/local.mk
19@@ -101,8 +101,8 @@ man/dynamic-deps.mk: Makefile
20 && $(run_help2man) \
21 --source='$(PACKAGE_STRING)' \
22 --include=$(srcdir)/man/$$name.x \
23- --output=$$t/$$name.1 $$t/$$argv \
24 --info-page='coreutils \(aq'$$name' invocation\(aq' \
25+ --output=$$t/$$name.1 $$t/$$argv \
26 && sed \
27 -e 's|$*\.td/||g' \
28 -e '/For complete documentation/d' \
29--
301.9.1
31