Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpx/lua-cjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-05-10 13:43:47 +0400
committerMark Pulford <mark@kyne.com.au>2011-05-10 13:43:47 +0400
commit88fba505797c8c828c3737395b7351da0c9bd8fe (patch)
treee970d073497bdcd3f68a0d5a58589bb11012c812
parent935affcbc57a9b4f4941423395acb51a6ea33e64 (diff)
Add support for perl installs outside of /usr/bin
Change "perl -w" to "use warnings" for compatibility with systems that put all #! args into argv[1].
-rwxr-xr-xtests/genutf8.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/genutf8.pl b/tests/genutf8.pl
index 4960663..6a522dd 100755
--- a/tests/genutf8.pl
+++ b/tests/genutf8.pl
@@ -1,8 +1,9 @@
-#!/usr/bin/perl -w
+#!/usr/bin/env perl
# Create test comparison data using a different UTF-8 implementation.
use strict;
+use warnings;
use Text::Iconv;
use FileHandle;