From: simon Date: Sun, 30 May 2010 22:48:31 +0000 (+0000) Subject: Some kernels don't like my #! line. Move the -w into a 'use X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/commitdiff_plain/40f89e91b4f5fc2cbc01486e7387a8ae530356df Some kernels don't like my #! line. Move the -w into a 'use warnings;' to make it simpler. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@8966 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/mkfiles.pl b/mkfiles.pl index ad364cd..541a44d 100755 --- a/mkfiles.pl +++ b/mkfiles.pl @@ -1,4 +1,4 @@ -#!/usr/bin/env perl -w +#!/usr/bin/env perl # # Cross-platform Makefile generator. # @@ -17,6 +17,7 @@ # - special-define objects (foo.o[PREPROCSYMBOL]) are not # supported in the mac or vcproj makefiles. +use warnings; use IO::Handle; use Cwd;