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/log_accum.pl | |
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/log_accum.pl')
-rwxr-xr-x | CVSROOT/log_accum.pl | 3 |
1 files changed, 1 insertions, 2 deletions
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); |