summaryrefslogtreecommitdiff
path: root/www/tcl-cgi
diff options
context:
space:
mode:
authorbouyer <bouyer@pkgsrc.org>2002-11-20 15:57:36 +0000
committerbouyer <bouyer@pkgsrc.org>2002-11-20 15:57:36 +0000
commitbc68a8d1757df0ee72eb572329df811548a67ed3 (patch)
treeb803dcd55c2d7c881b1ec488821930e30a712ae4 /www/tcl-cgi
parent6e355999d3ae061f26d21c06cc4a38da937ce364 (diff)
downloadpkgsrc-bc68a8d1757df0ee72eb572329df811548a67ed3.tar.gz
When testing if /usr/sbin/sendmail exists, don't try do use /usr/lib/sendmail
when it does.
Diffstat (limited to 'www/tcl-cgi')
-rw-r--r--www/tcl-cgi/distinfo4
-rw-r--r--www/tcl-cgi/patches/patch-aa5
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 @@