svn commit: r401192 - head/graphics/alpng
Dmitry Marakasov
amdmi3 at FreeBSD.org
Tue Nov 10 14:47:36 UTC 2015
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/
More information about the svn-ports-head
mailing list