From 6dec519be7a9814d6c93aa8cfb9bcb025708b1b1 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 13 Jan 2015 07:48:52 +0000 Subject: tools: add dummy scripts for help2man and makeinfo Signed-off-by: Jo-Philipp Wich SVN-Revision: 43957 --- tools/missing-macros/src/bin/help2man | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 tools/missing-macros/src/bin/help2man (limited to 'tools/missing-macros/src/bin/help2man') diff --git a/tools/missing-macros/src/bin/help2man b/tools/missing-macros/src/bin/help2man new file mode 100755 index 0000000000..6cbec57c50 --- /dev/null +++ b/tools/missing-macros/src/bin/help2man @@ -0,0 +1,29 @@ +#!/usr/bin/env perl + +use strict; +use Getopt::Long; + +my $output; +my $version; + +Getopt::Long::Configure('pass_through'); +Getopt::Long::GetOptions( + 'output=s' => \$output, + 'version' => \$version +); + +if ($version) +{ + printf "OpenWrt help2man 1.40.10\n"; + exit 0; +} +elsif ($output) +{ + open O, "> $output" || die "Unable to open $output: $!\n"; + print O "Dummy man page.\n"; + close O; +} +else +{ + print O "Dummy man page.\n"; +} -- cgit v1.2.3