diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-04-18 19:56:30 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-04-18 19:56:30 +0000 |
commit | 8f0759cb88e7a4569cc610b60f316594b0e252e9 (patch) | |
tree | e68410f2283eb23bec68456464da090ac47ccf2c /CVSROOT | |
parent | 5caae97180bb8dbff80af4cf6e2ce018833d714d (diff) | |
download | FreeBSD-ports-8f0759cb88e7a4569cc610b60f316594b0e252e9.zip FreeBSD-ports-8f0759cb88e7a4569cc610b60f316594b0e252e9.tar.gz |
Hard code path to perl as /usr/bin/perl so we stop picking it up from
/usr/local.
Submitted by: asami
Diffstat (limited to 'CVSROOT')
-rwxr-xr-x | CVSROOT/commit_prep.pl | 2 | ||||
-rwxr-xr-x | CVSROOT/commitcheck | 4 | ||||
-rwxr-xr-x | CVSROOT/cvs_acls.pl | 2 | ||||
-rwxr-xr-x | CVSROOT/log_accum.pl | 3 | ||||
-rw-r--r-- | CVSROOT/loginfo | 2 |
5 files changed, 6 insertions, 7 deletions
diff --git a/CVSROOT/commit_prep.pl b/CVSROOT/commit_prep.pl index 7e4e631..e965af8 100755 --- a/CVSROOT/commit_prep.pl +++ b/CVSROOT/commit_prep.pl @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w # # $FreeBSD$ # diff --git a/CVSROOT/commitcheck b/CVSROOT/commitcheck index b213037..6c8f692 100755 --- a/CVSROOT/commitcheck +++ b/CVSROOT/commitcheck @@ -2,8 +2,8 @@ # # $FreeBSD$ -if perl $CVSROOT/CVSROOT/cvs_acls.pl ${1+"$@"}; then - if perl $CVSROOT/CVSROOT/commit_prep.pl ${1+"$@"}; then +if /usr/bin/perl $CVSROOT/CVSROOT/cvs_acls.pl ${1+"$@"}; then + if /usr/bin/perl $CVSROOT/CVSROOT/commit_prep.pl ${1+"$@"}; then exit 0 fi fi diff --git a/CVSROOT/cvs_acls.pl b/CVSROOT/cvs_acls.pl index de1a8d1..0ea4ef7 100755 --- a/CVSROOT/cvs_acls.pl +++ b/CVSROOT/cvs_acls.pl @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -- # -*-Perl-*- +#!/usr/bin/perl -- # -*-Perl-*- # # cvs_acls.pl,v 1.2 1992/04/11 16:01:24 berliner Exp # $FreeBSD$ diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index b5dbf40..8a4d137 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w # # $FreeBSD$ # @@ -322,7 +322,6 @@ while (<STDIN>) { if (/^Added Files/) { $state = $STATE_ADDED; next; } if (/^Removed Files/) { $state = $STATE_REMOVED; next; } if (/^Log Message/) { $state = $STATE_LOG; next; } - s/^[ \t\n]+//; # delete leading space s/[ \t\n]+$//; # delete trailing space push (@changed_files, split) if ($state == $STATE_CHANGED); diff --git a/CVSROOT/loginfo b/CVSROOT/loginfo index 7abe865..adcaef6 100644 --- a/CVSROOT/loginfo +++ b/CVSROOT/loginfo @@ -21,4 +21,4 @@ # ever appear. If you want to do something extra to the log output, learn # Perl. # -DEFAULT perl $CVSROOT/CVSROOT/log_accum.pl %s +DEFAULT /usr/bin/perl $CVSROOT/CVSROOT/log_accum.pl %s |