diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-01-12 08:44:14 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2010-01-12 08:44:14 +0100 |
commit | 47f6eaac919f00308026ce7198c7c649288223ca (patch) | |
tree | 8cef752ce7f886902ab4a599e48cd2bc56bb763d /t | |
parent | 1809c940bf4737dd262fc0c026e063316c466a28 (diff) | |
download | perl-47f6eaac919f00308026ce7198c7c649288223ca.tar.gz |
With $PERL_UNICODE we still need to find utf8.pm
Diffstat (limited to 't')
-rw-r--r-- | t/porting/diag.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/porting/diag.t b/t/porting/diag.t index 0241a1278e..65e1958381 100644 --- a/t/porting/diag.t +++ b/t/porting/diag.t @@ -11,6 +11,7 @@ $|=1; my $make_exceptions_list = ($ARGV[0]||'') eq '--make-exceptions-list'; chdir '..' or die "Can't chdir ..: $!"; +BEGIN { defined $ENV{PERL_UNICODE} and push @INC, "lib"; } open my $diagfh, "<", "pod/perldiag.pod" or die "Can't open pod/perldiag.pod: $!"; |