mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
70de273d7f
- Change the way that the /usr/lib/sendmail -> /usr/sbin/sendmail patches are stored to make future upgrades of the port easier. - Change the way that the links in the install dirs were being set up.
24 lines
810 B
Plaintext
24 lines
810 B
Plaintext
--- contrib/sequencer.orig Sun Apr 27 20:23:46 1997
|
|
+++ contrib/sequencer Sun Apr 27 20:24:01 1997
|
|
@@ -399,7 +399,7 @@
|
|
&bounce("Approval required");
|
|
}
|
|
|
|
-$sendmail_cmd = "/usr/lib/sendmail $opt_m -f$sendmail_sender " .
|
|
+$sendmail_cmd = "/usr/sbin/sendmail $opt_m -f$sendmail_sender " .
|
|
join(" ", @ARGV);
|
|
|
|
if (defined($opt_d)) {
|
|
@@ -541,9 +541,9 @@
|
|
if (defined($opt_d)) {
|
|
# debugging, so just say it, don't do it
|
|
open(MAIL, ">-");
|
|
- print MAIL ">>> /usr/lib/sendmail -f$sendmail_sender -t\n";
|
|
+ print MAIL ">>> /usr/sbin/sendmail -f$sendmail_sender -t\n";
|
|
} else {
|
|
- local(@mailer) = split(' ',"/usr/lib/sendmail -f$sendmail_sender -t");
|
|
+ local(@mailer) = split(' ',"/usr/sbin/sendmail -f$sendmail_sender -t");
|
|
open(MAIL, "|-") || &do_exec_sendmail(@mailer);
|
|
}
|
|
|