summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2004-12-07 22:18:32 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2004-12-07 22:18:32 +0000
commit6eb186bec8a34e42a37f49a0ac910349f12f02ce (patch)
tree7384e5486a17fea423d6c78a22800a7ff295ae7e /usr.sbin
parent7f9a35d556069331e58918dd5dab860aeef8b3bb (diff)
sync usage() w/ man page;
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/httpd/src/support/apxs.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.sbin/httpd/src/support/apxs.pl b/usr.sbin/httpd/src/support/apxs.pl
index 4e46163a886..38940c4ba76 100644
--- a/usr.sbin/httpd/src/support/apxs.pl
+++ b/usr.sbin/httpd/src/support/apxs.pl
@@ -184,13 +184,13 @@ sub Getopts {
}
sub usage {
- print STDERR "Usage: apxs -g [-S <var>=<val>] -n <modname>\n";
- print STDERR " apxs -q [-S <var>=<val>] <query> ...\n";
- print STDERR " apxs -c [-S <var>=<val>] [-o <dsofile>] [-D <name>[=<value>]]\n";
- print STDERR " [-I <incdir>] [-L <libdir>] [-l <libname>] [-Wc,<flags>]\n";
- print STDERR " [-Wl,<flags>] <files> ...\n";
- print STDERR " apxs -i [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n";
- print STDERR " apxs -e [-S <var>=<val>] [-a] [-A] [-n <modname>] <dsofile> ...\n";
+ print STDERR "Usage: apxs -c [-D variable[=value]] [-I incdir] [-L libdir] [-l libname]\n";
+ print STDERR " [-o dsofile] [-S variable=value] [-Wc,compiler-flags]\n";
+ print STDERR " [-Wl,linker-flags] file ...\n";
+ print STDERR " apxs -e [-Aa] [-n name] [-S variable=value] dsofile ...\n";
+ print STDERR " apxs -g [-S variable=value] -n name\n";
+ print STDERR " apxs -i [-Aa] [-n name] [-S variable=value] dsofile ...\n";
+ print STDERR " apxs -q [-S variable=value] query ...\n";
exit(1);
}