diff options
author | bouyer <bouyer> | 2002-11-20 15:57:36 +0000 |
---|---|---|
committer | bouyer <bouyer> | 2002-11-20 15:57:36 +0000 |
commit | eb537ac347ab0a574662b9dd25248d36eb8a5361 (patch) | |
tree | b803dcd55c2d7c881b1ec488821930e30a712ae4 | |
parent | 1667c999e296c0446cdbbbbc329516db05e882fb (diff) | |
download | pkgsrc-eb537ac347ab0a574662b9dd25248d36eb8a5361.tar.gz |
When testing if /usr/sbin/sendmail exists, don't try do use /usr/lib/sendmail
when it does.
-rw-r--r-- | www/tcl-cgi/distinfo | 4 | ||||
-rw-r--r-- | www/tcl-cgi/patches/patch-aa | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/www/tcl-cgi/distinfo b/www/tcl-cgi/distinfo index 88383ad4833..ee021d44ea2 100644 --- a/www/tcl-cgi/distinfo +++ b/www/tcl-cgi/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2001/05/03 14:03:37 agc Exp $ +$NetBSD: distinfo,v 1.3 2002/11/20 15:57:36 bouyer Exp $ SHA1 (tcl-cgi-1.3.0/cgi.tcl.tar.gz) = bbfbbbf4ce48da97ee33418a8e7790778ba84afa Size (tcl-cgi-1.3.0/cgi.tcl.tar.gz) = 114514 bytes -SHA1 (patch-aa) = e1078442dc181b092fa99d44b7755aba7d8b2a60 +SHA1 (patch-aa) = 940e1052c71fe8faa56e842244b01aa267edab91 SHA1 (patch-ab) = cab2501a9067f279f08717948a1753619da8729d diff --git a/www/tcl-cgi/patches/patch-aa b/www/tcl-cgi/patches/patch-aa index 6c46ff11203..cacd1649f9a 100644 --- a/www/tcl-cgi/patches/patch-aa +++ b/www/tcl-cgi/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.3 2000/09/03 14:55:20 wiz Exp $ +$NetBSD: patch-aa,v 1.4 2002/11/20 15:57:37 bouyer Exp $ --- cgi.tcl.in.orig Wed Aug 30 11:07:29 2000 +++ cgi.tcl.in Wed Aug 30 11:08:26 2000 @@ -2040,7 +2040,7 @@ @@ -7,7 +7,8 @@ $NetBSD: patch-aa,v 1.3 2000/09/03 14:55:20 wiz Exp $ - if {[file executable /usr/lib/sendmail]} { + if {[file executable /usr/sbin/sendmail]} { - exec /usr/lib/sendmail -t -odb < $_cgi(mailfile) +- exec /usr/lib/sendmail -t -odb < $_cgi(mailfile) ++ exec /usr/sbin/sendmail -t -odb < $_cgi(mailfile) # Explanation: # -t means: pick up recipient from body @@ -2056,6 +2056,9 @@ |