svn commit: r450357 - head/sysutils/ansible

Nikolai Lifanov lifanov at FreeBSD.org
Fri Sep 22 12:20:12 UTC 2017


Author: lifanov
Date: Fri Sep 22 12:20:11 2017
New Revision: 450357
URL: https://svnweb.freebsd.org/changeset/ports/450357

Log:
  fix botched sed command refactoring
  
  Reported by:	Alex Mur (private email)

Modified:
  head/sysutils/ansible/Makefile

Modified: head/sysutils/ansible/Makefile
==============================================================================
--- head/sysutils/ansible/Makefile	Fri Sep 22 11:43:13 2017	(r450356)
+++ head/sysutils/ansible/Makefile	Fri Sep 22 12:20:11 2017	(r450357)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ansible
 PORTVERSION?=	2.4.0.0
-PORTREVISION?=	0
+PORTREVISION?=	1
 CATEGORIES=	sysutils python
 MASTER_SITES=	http://releases.ansible.com/ansible/
 
@@ -46,9 +46,9 @@ OPTIONS_DEFINE=	DOCS EXAMPLES
 
 post-patch:
 	${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} \
-		-e 's|/usr/bin/python|${PYTHON_CMD}|'
-		-e 's|/etc/ansible|${ETCDIR}|' \
-		-e 's|/usr/share/ansible|${DATADIR}|'
+		-e 's|/usr/bin/python|${PYTHON_CMD}|g' \
+		-e 's|/etc/ansible|${ETCDIR}|g' \
+		-e 's|/usr/share/ansible|${DATADIR}|g'
 
 post-install:
 	@${MKDIR} ${STAGEDIR}${MAN1PREFIX}/man/man1


More information about the svn-ports-all mailing list