diff options
author | Alexey Zelkin <phantom@FreeBSD.org> | 2001-12-17 18:53:25 +0000 |
---|---|---|
committer | Alexey Zelkin <phantom@FreeBSD.org> | 2001-12-17 18:53:25 +0000 |
commit | d64a41cc7fef04b6451ec152c4d498806739bbc7 (patch) | |
tree | 1cb3be7724b57b9d4b58ecca747b3165995e22c0 /devel/bugzilla2/files/patch-ag | |
parent | Update to 5.0.1. (diff) |
Fix default location of sendmail binary
Noticed by: Jamie Flournoy <jamie@white-mountain.org>
Notes
Notes:
svn path=/head/; revision=51682
Diffstat (limited to 'devel/bugzilla2/files/patch-ag')
-rw-r--r-- | devel/bugzilla2/files/patch-ag | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/bugzilla2/files/patch-ag b/devel/bugzilla2/files/patch-ag new file mode 100644 index 000000000000..47a4e02977da --- /dev/null +++ b/devel/bugzilla2/files/patch-ag @@ -0,0 +1,12 @@ +diff -u move.pl~ move.pl +--- move.pl~ Mon Dec 17 20:32:32 2001 ++++ move.pl Mon Dec 17 20:34:43 2001 +@@ -147,7 +147,7 @@ + $msg .= $xml . "\n"; + + open(SENDMAIL, +- "|/usr/lib/sendmail -ODeliveryMode=background -t") || ++ "|/usr/sbin/sendmail -ODeliveryMode=background -t") || + die "Can't open sendmail"; + print SENDMAIL $msg; + close SENDMAIL; |