aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLincoln Ramsay <lincoln.ramsay@nokia.com>2011-04-28 14:19:42 +1000
committeraxis <qt-info@nokia.com>2011-05-03 13:47:51 +0200
commit984400a5865ceee22ee2c7e2a4b09f2ddef6fc1d (patch)
treecc91bd80c6338e55fc08d8faee124196790c1150 /configure
parentea437d376712be54ba654688ea1f333481d18b9e (diff)
Warn everywhere, not just Unix
use warnings; is the portable way of doing #!/usr/bin/perl -w Also use strict; in init-repository. Signed-off-by: axis <qt-info@nokia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index b8ee11f0..5ca40f38 100755
--- a/configure
+++ b/configure
@@ -1,4 +1,4 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
####################################################################################################
#
# Mother script for Qt Modularization
@@ -8,6 +8,7 @@
#
####################################################################################################
use strict;
+use warnings;
use File::Basename;
use File::Path;