diff options
author | antoine <antoine@FreeBSD.org> | 2017-01-20 20:12:27 +0000 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2017-01-20 20:12:27 +0000 |
commit | c4c35f19b361018264860b671b79e83959b7a93d (patch) | |
tree | db418733555f5bac5e9fd26f227d9d96e4266cf7 | |
parent | 50a3d5996de3c521b370a76f92142c2afa1f96e9 (diff) | |
download | FreeBSD-ports-c4c35f19b361018264860b671b79e83959b7a93d.zip FreeBSD-ports-c4c35f19b361018264860b671b79e83959b7a93d.tar.gz |
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 8830d89..89ed8e4 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' |