diff options
author | Chip Salzenberg <chip@pobox.com> | 2003-02-24 21:35:56 +0000 |
---|---|---|
committer | chip <chip@pobox.com> | 2003-02-24 21:35:56 +0000 |
commit | 23b3bd7f4ea04a410bbe9a0b67cf4dbaa82b6992 (patch) | |
tree | 362ed3e4f83e42809a9c986393c5f4daf8c3723a | |
parent | 4ffa73a366885f682ceccdeee45e43075e0c312e (diff) | |
download | perl-23b3bd7f4ea04a410bbe9a0b67cf4dbaa82b6992.tar.gz |
In Porting scripts, use standard perl path of "/usr/bin/perl".
p4raw-id: //depot/perl@18767
-rw-r--r-- | Porting/check83.pl | 2 | ||||
-rwxr-xr-x | Porting/findvars | 2 | ||||
-rwxr-xr-x | Porting/fixCORE | 2 | ||||
-rwxr-xr-x | Porting/fixvars | 2 | ||||
-rwxr-xr-x | Porting/genlog | 2 | ||||
-rw-r--r-- | Porting/makerel | 2 | ||||
-rw-r--r-- | Porting/patchls | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/Porting/check83.pl b/Porting/check83.pl index 7006d23c1f..5851d9ffb6 100644 --- a/Porting/check83.pl +++ b/Porting/check83.pl @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl +#!/usr/bin/perl # Check whether there are naming conflicts when names are truncated to # the DOSish case-ignoring 8.3 format, plus other portability no-nos. diff --git a/Porting/findvars b/Porting/findvars index 2d3a9a3b8f..26a4bcf11d 100755 --- a/Porting/findvars +++ b/Porting/findvars @@ -1,4 +1,4 @@ -#!/l/local/bin/perl -w +#!/usr/bin/perl -w $pat = ''; # construct word list diff --git a/Porting/fixCORE b/Porting/fixCORE index 4c586d8969..f7f4539fd6 100755 --- a/Porting/fixCORE +++ b/Porting/fixCORE @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w use Data::Dumper; my $targ = shift; diff --git a/Porting/fixvars b/Porting/fixvars index a211e5816f..201c37f3ad 100755 --- a/Porting/fixvars +++ b/Porting/fixvars @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w use Data::Dumper; my $targ = (@ARGV) ? join(' ',@ARGV) : 'miniperl' ; diff --git a/Porting/genlog b/Porting/genlog index 48126f4fb4..98bccdd702 100755 --- a/Porting/genlog +++ b/Porting/genlog @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w # # Generate a nice changelist by querying perforce. # diff --git a/Porting/makerel b/Porting/makerel index 8937b258a5..0f98fc9217 100644 --- a/Porting/makerel +++ b/Porting/makerel @@ -1,4 +1,4 @@ -#!/bin/env perl -w +#!/usr/bin/perl -w # A first attempt at some automated support for making a perl release. # Very basic but functional - if you're on a unix system. diff --git a/Porting/patchls b/Porting/patchls index 4329f4cebc..1803ef7263 100644 --- a/Porting/patchls +++ b/Porting/patchls @@ -1,4 +1,4 @@ -#!/bin/perl -w +#!/usr/bin/perl -w # # patchls - patch listing utility # |