summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2012-04-12 07:38:20 +0100
committerPeter Powell <petpow@saberuk.com>2012-04-12 07:38:20 +0100
commit4c3e9dc529969fc6bd2e2b1e362603457575020a (patch)
tree14bc136d8d18bce371e08427e6689d4566584809 /make
parentfdd335625ea715947ff50648c269de4f3136e87a (diff)
Minor style tweaks.
Diffstat (limited to 'make')
-rw-r--r--make/configure.pm9
1 files changed, 5 insertions, 4 deletions
diff --git a/make/configure.pm b/make/configure.pm
index 4aa3c18b4..230bd3934 100644
--- a/make/configure.pm
+++ b/make/configure.pm
@@ -228,7 +228,8 @@ sub is_dir
sub showhelp
{
chomp(my $PWD = `pwd`);
- print "Usage: configure [options]
+ print <<EOH;
+Usage: configure [options]
*** NOTE: NON-INTERACTIVE CONFIGURE IS *NOT* SUPPORTED BY THE ***
*** INSPIRCD DEVELOPMENT TEAM. DO NOT ASK FOR HELP REGARDING ***
@@ -257,8 +258,8 @@ InspIRCd 1.0.x, are also allowed.
to select() [not set]
--disable-kqueue Do not enable kqueue(), fall back
to select() [not set]
- --disable-ipv6 Do not build ipv6 native InspIRCd [not set]
- --with-cc=[filename] Use an alternative g++ binary to
+ --disable-ipv6 Do not build IPv6 native InspIRCd [not set]
+ --with-cc=[filename] Use an alternative compiler to
build InspIRCd [g++]
--with-maxbuf=[n] Change the per message buffer size [512]
DO NOT ALTER THIS OPTION WITHOUT GOOD REASON
@@ -280,7 +281,7 @@ InspIRCd 1.0.x, are also allowed.
--disable-extras=[extras] Disable the specified list of extras
--help Show this help text and exit
-";
+EOH
exit(0);
}