From: simon Date: Sun, 30 May 2010 22:50:18 +0000 (+0000) Subject: Move '-w' in the #! line into 'use warnings;' in the Perl code, to X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/52a1ed228f79b38a867d6d46e7f2d33a31be5b8a?hp=4877ec8d0d0d4dfac61b4858bb1cf6a5bb661f76 Move '-w' in the #! line into 'use warnings;' in the Perl code, to simplify the #! line. git-svn-id: svn://svn.tartarus.org/sgt/putty@8967 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/mkfiles.pl b/mkfiles.pl index 118667bb..0a535a32 100755 --- a/mkfiles.pl +++ b/mkfiles.pl @@ -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;