aboutsummaryrefslogtreecommitdiffstats
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-09-30 11:33:47 +0100
commit288343e30604b944dc18fd82172febd314d9c520 (patch)
tree1946ab719eec70666547d0f4ab19220fe0235371 /scripts
parent96241de59fdf548ae0f80cc9e4668f9ba11924ef (diff)
downloadopenembedded-core-contrib-288343e30604b944dc18fd82172febd314d9c520.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. 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 @@
+#!/bin/sh
+
+exit 1