From owner-svn-ports-all@freebsd.org Wed Nov 22 14:45:18 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 756A4DED68E; Wed, 22 Nov 2017 14:45:18 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 266077CEF5; Wed, 22 Nov 2017 14:45:18 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAMEjH3Q024304; Wed, 22 Nov 2017 14:45:17 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAMEjH5U024303; Wed, 22 Nov 2017 14:45:17 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201711221445.vAMEjH5U024303@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 22 Nov 2017 14:45:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454689 - head/mail/postfix X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/mail/postfix X-SVN-Commit-Revision: 454689 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Nov 2017 14:45:18 -0000 Author: pi Date: Wed Nov 22 14:45:17 2017 New Revision: 454689 URL: https://svnweb.freebsd.org/changeset/ports/454689 Log: mail/postfix: use ECHO_CMD instead of ECHO - When using "make -s install" the build can fail because the essential modifications to the port build are not made correctly. # make -s VECHO true # make -s VECHO_CMD echo PR: 222988 Submitted by: Franco Fichtner Approved by: ohauer (maintainer timeout) Modified: head/mail/postfix/Makefile Modified: head/mail/postfix/Makefile ============================================================================== --- head/mail/postfix/Makefile Wed Nov 22 13:34:18 2017 (r454688) +++ head/mail/postfix/Makefile Wed Nov 22 14:45:17 2017 (r454689) @@ -280,7 +280,7 @@ pre-patch: fi .endif - @${ECHO} 'See header_checks.5.html' \ + @${ECHO_CMD} 'See header_checks.5.html' \ > ${WRKSRC}/html/body_checks.5.html @${REINPLACE_CMD} -E -e 's!^(#define DEF_SGID_GROUP[^"]+)"postdrop"$$!\1"maildrop"!' \ ${WRKSRC}/src/global/mail_params.h @@ -290,12 +290,12 @@ pre-patch: post-patch: .for f in ${HTML1} - @${ECHO} '$$html_directory/$f:f:root:-:644' \ + @${ECHO_CMD} '$$html_directory/$f:f:root:-:644' \ >> ${WRKSRC}/conf/postfix-files .endfor - @${ECHO} '$$manpage_directory/man1/posttls-finger.1:f:root:-:644' \ + @${ECHO_CMD} '$$manpage_directory/man1/posttls-finger.1:f:root:-:644' \ >> ${WRKSRC}/conf/postfix-files - @${ECHO} '$$command_directory/posttls-finger:f:root:-:755' \ + @${ECHO_CMD} '$$command_directory/posttls-finger:f:root:-:755' \ >> ${WRKSRC}/conf/postfix-files do-configure: @@ -305,7 +305,7 @@ do-configure: dynamicmaps=yes \ ${POSTFIX_DYN_AUXLIBS} \ AUXLIBS="${POSTFIX_AUXLIBS}" && \ - ${ECHO} "all: default" >> Makefile) + ${ECHO_CMD} "all: default" >> Makefile) pre-install-INST_BASE-on: ${MKDIR} ${STAGEDIR}/etc/rc.d