aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorjfitz <jfitz@FreeBSD.org>1997-05-10 00:06:41 +0800
committerjfitz <jfitz@FreeBSD.org>1997-05-10 00:06:41 +0800
commit4e357174b44abf39e6183002b18bd27ba619499e (patch)
tree15d75c3b580e3d231467665edee5146d3766e7f7 /security
parente8017f302cbf43e3a9ccf9f47f71d9adca8626c7 (diff)
downloadfreebsd-ports-gnome-4e357174b44abf39e6183002b18bd27ba619499e.tar.gz
freebsd-ports-gnome-4e357174b44abf39e6183002b18bd27ba619499e.tar.zst
freebsd-ports-gnome-4e357174b44abf39e6183002b18bd27ba619499e.zip
Fix incorrect path: /usr/ucb/tail -> /usr/bin/tail
Diffstat (limited to 'security')
-rw-r--r--security/swatch/files/patch-ab20
1 files changed, 20 insertions, 0 deletions
diff --git a/security/swatch/files/patch-ab b/security/swatch/files/patch-ab
new file mode 100644
index 000000000000..6ef04e2cd0bb
--- /dev/null
+++ b/security/swatch/files/patch-ab
@@ -0,0 +1,20 @@
+--- swatch.pl.orig Fri May 9 12:03:34 1997
++++ swatch.pl Fri May 9 12:03:47 1997
+@@ -29,7 +29,7 @@
+ eval 'PERL_BIN_DIR/perl -S $0 ${1+"$@"}'
+ if 0;
+ #
+-$ENV{'PATH'} = '/usr/ucb:/usr/bin:/bin:PERL_BIN_DIR';
++$ENV{'PATH'} = '/usr/bin:/bin:PERL_BIN_DIR';
+ $ENV{'IFS'} = '' if $ENV{'IFS'} ne '';
+ $0 = rindex($0, "/") > -1 ? substr($0, rindex($0, "/")+1) : $0;
+
+@@ -44,7 +44,7 @@
+
+ # Some defaults
+ $PERL = 'PERL_BIN_DIR/perl';
+-$TAIL = '/usr/ucb/tail -f';
++$TAIL = '/usr/bin/tail -f';
+ $DEF_INPUT = "$TAIL /var/log/syslog";
+ $Pipe = 1;
+ $ConfigFile = "$ENV{'HOME'}/.swatchrc";