diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-29 17:49:03 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-03-29 17:49:03 +0100 |
commit | 3b44149a2251081d9180651ae5f8a184705e3835 (patch) | |
tree | 8b179015b316ec23e2da35e5fb4065f5e1c2a1ed /package/coreutils/coreutils-03-fix-for-dummy-man-usage.patch | |
parent | 406655384fdbd03e5de884c6b60861a100d8fc94 (diff) | |
download | buildroot-3b44149a2251081d9180651ae5f8a184705e3835.tar.gz buildroot-3b44149a2251081d9180651ae5f8a184705e3835.zip |
coreutils: bump to 8.22 to fix build on AArch64
Fixes:
http://autobuild.buildroot.net/results/25c/25cfb126c01aa70f4666709dddbff298813b5c69/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/coreutils/coreutils-03-fix-for-dummy-man-usage.patch')
-rw-r--r-- | package/coreutils/coreutils-03-fix-for-dummy-man-usage.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/package/coreutils/coreutils-03-fix-for-dummy-man-usage.patch b/package/coreutils/coreutils-03-fix-for-dummy-man-usage.patch new file mode 100644 index 0000000000..b7e82609bd --- /dev/null +++ b/package/coreutils/coreutils-03-fix-for-dummy-man-usage.patch @@ -0,0 +1,31 @@ +Upstream-Status: Pending + +coreutils: fix for dummy-man usage + +The options should be before the final argument, otherwise, the following error +would appear when compiling. + +"dummy-man: too many non-option arguments" + +Signed-off-by: Chen Qi <Qi.Chen@windriver.com> +--- + man/local.mk | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/man/local.mk b/man/local.mk +index 7cef5e3..dc0865f 100644 +--- a/man/local.mk ++++ b/man/local.mk +@@ -189,8 +189,8 @@ man/yes.1: src/yes + && $(run_help2man) \ + --source='$(PACKAGE_STRING)' \ + --include=$(srcdir)/man/$$name.x \ +- --output=$$t/$$name.1 $$t/$$name \ + --info-page='coreutils \(aq'$$name' invocation\(aq' \ ++ --output=$$t/$$name.1 $$t/$$name \ + && sed \ + -e 's|$*\.td/||g' \ + -e '/For complete documentation/d' \ +-- +1.7.9.5 + |