Move '-w' in the #! line into 'use warnings;' in the Perl code, to
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 30 May 2010 22:50:18 +0000 (22:50 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 30 May 2010 22:50:18 +0000 (22:50 +0000)
simplify the #! line.

git-svn-id: svn://svn.tartarus.org/sgt/putty@8967 cda61777-01e9-0310-a592-d414129be87e

mkfiles.pl

index 118667b..0a535a3 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl -w
+#!/usr/bin/env perl
 #
 # Cross-platform Makefile generator.
 #
@@ -15,6 +15,7 @@
 #
 # FIXME: no attempt made to handle !forceobj in the project files.
 
+use warnings;
 use FileHandle;
 use Cwd;