diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-01 15:23:04 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-09-01 15:23:04 +0000 |
commit | d129d7c3cdf1ce81c744dca4cc0c2659bf51cd3f (patch) | |
tree | aa568ccdeed8c256da1e739812127e9237bcf213 /docs | |
parent | 04e458d435a3d1bf1be9c343aedd438483cb690f (diff) | |
download | busybox-d129d7c3cdf1ce81c744dca4cc0c2659bf51cd3f.tar.gz |
- add ether-wake to the hardcoded(argh!) list of APPLET_ODDNAME
Diffstat (limited to 'docs')
-rwxr-xr-x | docs/autodocifier.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl index 78950dc17..576e31281 100755 --- a/docs/autodocifier.pl +++ b/docs/autodocifier.pl @@ -1,4 +1,5 @@ #!/usr/bin/perl -w +# vi: set sw=4 ts=4: use strict; use Getopt::Long; @@ -49,11 +50,13 @@ sub pod_for_usage { my $usage = shift; # Sigh. Fixup the known odd-name applets. +# Perhaps we can use some of APPLET_ODDNAME from include/applets.h ? $name =~ s/dpkg_deb/dpkg-deb/g; $name =~ s/fsck_minix/fsck.minix/g; $name =~ s/mkfs_minix/mkfs.minix/g; $name =~ s/run_parts/run-parts/g; $name =~ s/start_stop_daemon/start-stop-daemon/g; + $name =~ s/ether_wake/ether-wake/g; # make options bold my $trivial = $usage->{trivial}; |