Date: Tue, 10 Nov 2015 14:47:35 +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: r401192 - head/graphics/alpng Message-ID: <201511101447.tAAElZ5s065636@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Tue Nov 10 14:47:34 2015 New Revision: 401192 URL: https://svnweb.freebsd.org/changeset/ports/401192 Log: - Fix build when CC contains slashes Approved by: portmgr blanket Modified: head/graphics/alpng/Makefile Modified: head/graphics/alpng/Makefile ============================================================================== --- head/graphics/alpng/Makefile Tue Nov 10 13:10:02 2015 (r401191) +++ head/graphics/alpng/Makefile Tue Nov 10 14:47:34 2015 (r401192) @@ -24,7 +24,7 @@ PLIST_FILES= include/alpng.h \ lib/libalpng.a do-configure: - @${REINPLACE_CMD} -e "s/gcc/${CC}/g" ${WRKSRC}/makefile + @${REINPLACE_CMD} -e "s|gcc|${CC}|g" ${WRKSRC}/makefile do-install: ${INSTALL_DATA} ${WRKSRC}/libalpng.a ${STAGEDIR}${PREFIX}/lib/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511101447.tAAElZ5s065636>