summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-29 23:26:07 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-04 13:59:31 +0100
commitfbec4752750cdc326a0ea670e808179adc73bed0 (patch)
tree24253d3d847a656f7d2c436f613d5be4843bc2bf /scripts
parent317fc4fbd02ca821ff5dee85072becf7f16a2167 (diff)
downloadpoky-fbec4752750cdc326a0ea670e808179adc73bed0.tar.gz
Remove help2man dependency
The help2man script is pretty useless to us. It requires to run the target binary to extract help information which is not possible for any of our cross compiled target binaries. We're not interested in man pages for -cross/-native tools. It therefore makes no sense to have this as a core build dependency. This patch removes the dependeny and replaces it with a script returning false. This will trigger autotool's missing utility to use the copy of the man page included with the sources which is what would already happen when we tried to run cross compiled binaries anyway. (From OE-Core rev: c6e0f23363f24ae9f02cd753621ce45470285b16) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/help2man3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/help2man b/scripts/help2man
new file mode 100755
index 0000000000..2bb8d868bd
--- /dev/null
+++ b/scripts/help2man
@@ -0,0 +1,3 @@
1#!/bin/sh
2
3exit 1