From 9f52d6c905aee1f50bd1dced137efa01eea08573 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 30 May 2010 22:50:18 +0000 Subject: [PATCH] Move '-w' in the #! line into 'use warnings;' in the Perl code, to simplify the #! line. [originally from svn r8967] --- mkfiles.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.45.2