Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d62d4c3

Browse files
committed
Change
#! /usr/local/bin/perl -w to #! /usr/bin/perl The path is probably more portable, and the -w was kind of silly for a six line script that produces two warnings as it stands.
1 parent b7001d0 commit d62d4c3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/locale/sort-test.pl

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/local/bin/perl -w
1+
#! /usr/bin/perl
22
use locale;
33

44
open(INFILE, "<$ARGV[0]");
@@ -9,4 +9,3 @@
99
my(@result) = sort @words;
1010

1111
print "@result\n";
12-

0 commit comments

Comments
 (0)