svn commit: r431994 - head/www/bkmrkconv

Antoine Brodin antoine at FreeBSD.org
Fri Jan 20 20:12:28 UTC 2017


Author: antoine
Date: Fri Jan 20 20:12:27 2017
New Revision: 431994
URL: https://svnweb.freebsd.org/changeset/ports/431994

Log:
  Do not reinplace a symlink
  
  PR:		216309

Modified:
  head/www/bkmrkconv/Makefile

Modified: head/www/bkmrkconv/Makefile
==============================================================================
--- head/www/bkmrkconv/Makefile	Fri Jan 20 20:09:54 2017	(r431993)
+++ head/www/bkmrkconv/Makefile	Fri Jan 20 20:12:27 2017	(r431994)
@@ -18,7 +18,7 @@ NO_ARCH=	yes
 OPTIONS_DEFINE=	DOCS
 
 post-patch:
-	@${FIND} ${WRKSRC} -name '*.pl' | ${XARGS} ${REINPLACE_CMD} -i '' -e \
+	@${FIND} ${WRKSRC} -type f -name '*.pl' | ${XARGS} ${REINPLACE_CMD} -i '' -e \
 		's|/usr/bin/perl|${PERL}|g ; \
 		 s|%%PREFIX%%|${PREFIX}|g'
 


More information about the svn-ports-all mailing list