diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2003-09-24 09:37:11 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2003-09-24 09:37:11 +0000 |
commit | f37f7775e3bcaa6fa808e1a5e037deae35d5b262 (patch) | |
tree | dfd75e4de6392a8352e2ab1fc6550d87dccdb06c /devel/mingw-binutils/Makefile | |
parent | b20d1c4deb10c57406da8224b9673695a8a8387b (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/Makefile')
-rw-r--r-- | devel/mingw-binutils/Makefile | 4 |
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> |