svn commit: r393530 - head/net/rinetd

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Aug 4 16:38:20 UTC 2015


Author: amdmi3
Date: Tue Aug  4 16:38:19 2015
New Revision: 393530
URL: https://svnweb.freebsd.org/changeset/ports/393530

Log:
  - Don't use / in sed regexps to allow paths, unbreaking cross-builds
  
  Approved by:	portmgr blanket

Modified:
  head/net/rinetd/Makefile

Modified: head/net/rinetd/Makefile
==============================================================================
--- head/net/rinetd/Makefile	Tue Aug  4 16:37:42 2015	(r393529)
+++ head/net/rinetd/Makefile	Tue Aug  4 16:38:19 2015	(r393530)
@@ -34,7 +34,7 @@ post-patch:
 		${WRKSRC}/rinetd.[8c]
 	@${REINPLACE_CMD} -E "s,/usr(/sbin/rinetd),${PREFIX}\1," \
 		${WRKSRC}/rinetd.8
-	@${REINPLACE_CMD} -e "s/cc /${CC} /g" ${WRKSRC}/Makefile
+	@${REINPLACE_CMD} -e "s,cc ,${CC} ,g" ${WRKSRC}/Makefile
 
 post-install:
 	${MKDIR} ${STAGEDIR}${DOCSDIR}


More information about the svn-ports-all mailing list