summaryrefslogtreecommitdiff
path: root/make/utilities.pm
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-25 10:36:20 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-25 10:36:20 +0000
commit3895566b53bad68db68bd57654b31119d9864593 (patch)
tree05d85435ca130e556e2ada26b3f10c3c986ad9a9 /make/utilities.pm
parent46d3b250ba3a3f20d6e61ea58cabe3129f3a9c31 (diff)
Add 'require 5.8.0' to the very top of every module to make the failure message when you run an ancient perl a bit more descriptive.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7820 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make/utilities.pm')
-rw-r--r--make/utilities.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/make/utilities.pm b/make/utilities.pm
index 647209f58..792fd035b 100644
--- a/make/utilities.pm
+++ b/make/utilities.pm
@@ -10,8 +10,10 @@
#
# ---------------------------------------------------
-
package make::utilities;
+
+require 5.8.0;
+
use Exporter 'import';
use POSIX;
use Getopt::Long;