Date: Thu, 17 Dec 2015 18:46:14 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403928 - head/security/axTLS Message-ID: <201512171846.tBHIkEFc056217@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Thu Dec 17 18:46:14 2015 New Revision: 403928 URL: https://svnweb.freebsd.org/changeset/ports/403928 Log: - Fix build when CC contains slashes Approved by: portmgr blanket Modified: head/security/axTLS/Makefile Modified: head/security/axTLS/Makefile ============================================================================== --- head/security/axTLS/Makefile Thu Dec 17 18:45:17 2015 (r403927) +++ head/security/axTLS/Makefile Thu Dec 17 18:46:14 2015 (r403928) @@ -86,7 +86,7 @@ CONFIG_SUB+= TEST_PERF="\# " \ _CONFIG_SUB_TEMP= ${CONFIG_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} post-patch: - ${REINPLACE_CMD} -e '/^CC/s/gcc/${CC}/; /^HOSTCC/s/gcc/${CC}/' \ + ${REINPLACE_CMD} -e '/^CC/s|gcc|${CC}|; /^HOSTCC/s|gcc|${CC}|' \ ${WRKSRC}/config/Rules.mak do-configure:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512171846.tBHIkEFc056217>