Some kernels don't like my #! line. Move the -w into a 'use

warnings;' to make it simpler.

[originally from svn r8966]
This commit is contained in:
Simon Tatham
2010-05-30 22:48:31 +00:00
parent d5c848b92f
commit 3dc6adba5e

View File

@ -1,4 +1,4 @@
#!/usr/bin/env perl -w #!/usr/bin/env perl
# #
# Cross-platform Makefile generator. # Cross-platform Makefile generator.
# #
@ -17,6 +17,7 @@
# - special-define objects (foo.o[PREPROCSYMBOL]) are not # - special-define objects (foo.o[PREPROCSYMBOL]) are not
# supported in the mac or vcproj makefiles. # supported in the mac or vcproj makefiles.
use warnings;
use IO::Handle; use IO::Handle;
use Cwd; use Cwd;