aboutsummaryrefslogtreecommitdiff
path: root/textproc/libextractor
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2011-03-03 08:47:55 +0000
committerVasil Dimov <vd@FreeBSD.org>2011-03-03 08:47:55 +0000
commitb846e9d5a199eae7eb1e5c6099fdd4282cda62cf (patch)
treec7bf1922753e95a19fe66b5232f253b9753688d2 /textproc/libextractor
parent1d270b350df4414a8f364877a85dc805549933a4 (diff)
Silence bogus portlint warning about using the file command
Notes
Notes: svn path=/head/; revision=270178
Diffstat (limited to 'textproc/libextractor')
-rw-r--r--textproc/libextractor/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/textproc/libextractor/Makefile b/textproc/libextractor/Makefile
index b636d2851f43..264b6b3313ac 100644
--- a/textproc/libextractor/Makefile
+++ b/textproc/libextractor/Makefile
@@ -59,11 +59,11 @@ PLIST_SUB+= VORBIS="@comment "
patch-autotools-libtool::
@(cd ${PATCH_WRKSRC}; \
- for file in ${LIBTOOLFILES}; do \
- ${CP} $$file $$file.tmp; \
+ for f in ${LIBTOOLFILES}; do \
+ ${CP} $$f $$f.tmp; \
${SED} -e "/^ltmain=/s^\$$ac_aux_dir/ltmain.sh^${LTMAIN}^g" \
- $$file.tmp > $$file; \
- ${RM} $$file.tmp; \
+ $$f.tmp > $$f; \
+ ${RM} $$f.tmp; \
done);
.include <bsd.port.post.mk>