svn commit: r393599 - head/lang/algol68g

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Aug 5 17:24:59 UTC 2015


Author: amdmi3
Date: Wed Aug  5 17:24:58 2015
New Revision: 393599
URL: https://svnweb.freebsd.org/changeset/ports/393599

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

Modified:
  head/lang/algol68g/Makefile

Modified: head/lang/algol68g/Makefile
==============================================================================
--- head/lang/algol68g/Makefile	Wed Aug  5 17:16:19 2015	(r393598)
+++ head/lang/algol68g/Makefile	Wed Aug  5 17:24:58 2015	(r393599)
@@ -29,7 +29,7 @@ PLIST_FILES=	bin/a68g man/man1/a68g.1.gz
 post-patch:
 #	Skip broken check, assume our $CC works
 	@${REINPLACE_CMD} -Ee 's/.*(\*-freebsd)/\1/' \
-		-e 's/"xgcc"/"x${CC}"/; s/-ldl //' ${WRKSRC}/configure
+		-e 's|"xgcc"|"x${CC}"|; s/-ldl //' ${WRKSRC}/configure
 	@${REINPLACE_CMD} -e '/^install-data-am/s/install-docDATA//' \
 		${WRKSRC}/Makefile.in
 


More information about the svn-ports-all mailing list