projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7001d0
)
Change
author
Peter Eisentraut
Fri, 19 Jan 2001 19:06:48 +0000
(19:06 +0000)
committer
Peter Eisentraut
Fri, 19 Jan 2001 19:06:48 +0000
(19:06 +0000)
#! /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.
src/test/locale/sort-test.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/test/locale/sort-test.pl
b/src/test/locale/sort-test.pl
index 7d9b8ef03406ce2b52cdd4c6c8f7bd7bdae8c539..aedfa22c88fb2243ebf39b6d3ae0da4f092e95f2 100755
(executable)
--- a/
src/test/locale/sort-test.pl
+++ b/
src/test/locale/sort-test.pl
@@
-1,4
+1,4
@@
-#!
/usr/local/bin/perl -w
+#!
/usr/bin/perl
use locale;
open(INFILE, "<$ARGV[0]");
@@
-9,4
+9,3
@@
$"="\n";
my(@result) = sort @words;
print "@result\n";
-