summaryrefslogtreecommitdiffstats
path: root/CVSROOT/log_accum.pl
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1995-04-18 19:56:30 +0000
committerrgrimes <rgrimes@FreeBSD.org>1995-04-18 19:56:30 +0000
commit8f0759cb88e7a4569cc610b60f316594b0e252e9 (patch)
treee68410f2283eb23bec68456464da090ac47ccf2c /CVSROOT/log_accum.pl
parent5caae97180bb8dbff80af4cf6e2ce018833d714d (diff)
downloadFreeBSD-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-xCVSROOT/log_accum.pl3
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);
OpenPOWER on IntegriCloud