summaryrefslogtreecommitdiffstats
path: root/docs/makedocs.pl
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-09-01 23:43:00 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-09-01 23:43:00 +0200
commit1001cbba7b16ccc4611bbee0474264bb551d1ea5 (patch)
tree9596c12f8ed8730e864acdfc10ddd08b0796f8ef /docs/makedocs.pl
parent88157fb0e84c374031020e0bd4ca82bb450bb146 (diff)
downloadbugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.tar.gz
bugzilla-1001cbba7b16ccc4611bbee0474264bb551d1ea5.tar.xz
Bug 787529: Use |use 5.10.1| everywhere
r=wicked a=LpSolit
Diffstat (limited to 'docs/makedocs.pl')
-rwxr-xr-xdocs/makedocs.pl8
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/makedocs.pl b/docs/makedocs.pl
index 4bf1fb4a0..ea08d8258 100755
--- a/docs/makedocs.pl
+++ b/docs/makedocs.pl
@@ -8,7 +8,9 @@
# This script compiles all the documentation.
+use 5.10.1;
use strict;
+
use Cwd;
# We need to be in this directory to use our libraries.
@@ -87,8 +89,8 @@ sub MakeDocs {
my ($name, $cmdline) = @_;
- print "Creating $name documentation ...\n" if defined $name;
- print "$cmdline\n\n";
+ say "Creating $name documentation ..." if defined $name;
+ say "$cmdline\n";
system $cmdline;
print "\n";
@@ -96,7 +98,7 @@ sub MakeDocs {
sub make_pod {
- print "Creating API documentation...\n";
+ say "Creating API documentation...";
my $converter = Pod::Simple::HTMLBatch::Bugzilla->new;
# Don't output progress information.