summaryrefslogtreecommitdiff
path: root/devel/mingw-binutils
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2003-09-24 09:37:11 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2003-09-24 09:37:11 +0000
commitf37f7775e3bcaa6fa808e1a5e037deae35d5b262 (patch)
treedfd75e4de6392a8352e2ab1fc6550d87dccdb06c /devel/mingw-binutils
parent- Update to version 0.7.10 (diff)
Make portlint(1) happy by changing strip to ${STRIP_CMD}
Submitted by: Oleg Karachevtsev <ok@etrust.ru> PR: 56998
Notes
Notes: svn path=/head/; revision=89169
Diffstat (limited to 'devel/mingw-binutils')
-rw-r--r--devel/mingw-binutils/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/mingw-binutils/Makefile b/devel/mingw-binutils/Makefile
index 5166187d6213..3a6901c5b9be 100644
--- a/devel/mingw-binutils/Makefile
+++ b/devel/mingw-binutils/Makefile
@@ -49,11 +49,11 @@ post-install:
addr2line ar as c++filt dlltool gasp ld nm \
objcopy objdump ranlib size strings strip windres; \
do \
- strip ${PREFIX}/bin/i386-mingw32msvc-$${file}; \
+ ${STRIP_CMD} ${PREFIX}/bin/i386-mingw32msvc-$${file}; \
done
@for file in ar as dlltool ld nm ranlib strip; \
do \
- strip ${PREFIX}/i386-mingw32msvc/bin/$${file}; \
+ ${STRIP_CMD} ${PREFIX}/i386-mingw32msvc/bin/$${file}; \
done
.include <bsd.port.mk>