From 88fba505797c8c828c3737395b7351da0c9bd8fe Mon Sep 17 00:00:00 2001 From: Mark Pulford Date: Tue, 10 May 2011 19:13:47 +0930 Subject: 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]. --- tests/genutf8.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') 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; -- cgit v1.2.3-55-g6feb