From 3dc6adba5ef474f5e145b22184639b7b86b329f3 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 30 May 2010 22:48:31 +0000 Subject: [PATCH] Some kernels don't like my #! line. Move the -w into a 'use warnings;' to make it simpler. [originally from svn r8966] --- mkfiles.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;