diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2017-01-20 20:12:27 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2017-01-20 20:12:27 +0000 |
commit | d60dafdb9346dc92ac5f2181c6db97ba95b30061 (patch) | |
tree | db418733555f5bac5e9fd26f227d9d96e4266cf7 | |
parent | Remove useless reinplace that was editing a symlink (diff) |
Do not reinplace a symlink
PR: 216309
-rw-r--r-- | www/bkmrkconv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/bkmrkconv/Makefile b/www/bkmrkconv/Makefile index 8830d894c68b..89ed8e415d37 100644 --- a/www/bkmrkconv/Makefile +++ b/www/bkmrkconv/Makefile @@ -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' |