summaryrefslogtreecommitdiffstats
path: root/usr.sbin/httpd/src
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2004-12-07 22:18:31 +0000
committerjmc <jmc@openbsd.org>2004-12-07 22:18:31 +0000
commit9a55a3f03b6582b59b6bb5c2f352ced58246e418 (patch)
treecbef0b522cf49d3c3a8c63334f947fdb0616d85e /usr.sbin/httpd/src
parentsync w/ obsd behaviour + tweaks; (diff)
downloadwireguard-openbsd-9a55a3f03b6582b59b6bb5c2f352ced58246e418.tar.xz
wireguard-openbsd-9a55a3f03b6582b59b6bb5c2f352ced58246e418.zip
sync usage() w/ man page;
Diffstat (limited to 'usr.sbin/httpd/src')
-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);
}