diff options
| author | Simon Tatham <anakin@pobox.com> | 2010-05-30 22:48:31 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2010-05-30 22:48:31 +0000 |
| commit | 3dc6adba5ef474f5e145b22184639b7b86b329f3 (patch) | |
| tree | c10598e016f37b8dfeaffadd18f2a00580451833 | |
| parent | d5c848b92f850a484f5a48eaa7469ee383b7d93c (diff) | |
| download | puzzles-3dc6adba5ef474f5e145b22184639b7b86b329f3.zip puzzles-3dc6adba5ef474f5e145b22184639b7b86b329f3.tar.gz puzzles-3dc6adba5ef474f5e145b22184639b7b86b329f3.tar.bz2 puzzles-3dc6adba5ef474f5e145b22184639b7b86b329f3.tar.xz | |
Some kernels don't like my #! line. Move the -w into a 'use
warnings;' to make it simpler.
[originally from svn r8966]
| -rwxr-xr-x | mkfiles.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |