svn commit: r285617 - head/tools/build/mk

Andrey A. Chernov ache at FreeBSD.org
Thu Jul 16 02:08:55 UTC 2015


Author: ache
Date: Thu Jul 16 02:08:54 2015
New Revision: 285617
URL: https://svnweb.freebsd.org/changeset/base/285617

Log:
  Comment out usr/sbin/mailwrapper removal
  because for no mailwrapper case we have:
  /usr/sbin/sendmail -> /usr/sbin/mailwrapper
  /usr/sbin/mailwrapper -> /usr/libexec/sendmail/sendmail
  Add comment explaining it.

Modified:
  head/tools/build/mk/OptionalObsoleteFiles.inc

Modified: head/tools/build/mk/OptionalObsoleteFiles.inc
==============================================================================
--- head/tools/build/mk/OptionalObsoleteFiles.inc	Wed Jul 15 21:44:16 2015	(r285616)
+++ head/tools/build/mk/OptionalObsoleteFiles.inc	Thu Jul 16 02:08:54 2015	(r285617)
@@ -5122,7 +5122,10 @@ OLD_FILES+=usr/share/misc/mail.tildehelp
 
 .if ${MK_MAILWRAPPER} == no
 OLD_FILES+=etc/mail/mailer.conf
-OLD_FILES+=usr/sbin/mailwrapper
+# Don't remove, for no mailwrapper case:
+# /usr/sbin/sendmail -> /usr/sbin/mailwrapper
+# /usr/sbin/mailwrapper -> /usr/libexec/sendmail/sendmail
+#OLD_FILES+=usr/sbin/mailwrapper
 OLD_FILES+=usr/share/man/man8/mailwrapper.8.gz
 .endif
 


More information about the svn-src-all mailing list