Don't use -w in shebang line

This can cause warnings when PERL_PATH gets expanded to /usr/bin/env.
Patch by Adam Sampson, https://bugzilla.gnome.org/show_bug.cgi?id=641477
This commit is contained in:
Matthias Clasen 2011-02-07 23:27:19 -05:00
parent a0554a9f76
commit 25ab13fd3c

View File

@ -1,5 +1,6 @@
#!@PERL_PATH@ -w
#!@PERL_PATH@
user warnings;
use File::Basename;
use Safe;