diff options
author | osa <osa@FreeBSD.org> | 2003-09-24 09:37:11 +0000 |
---|---|---|
committer | osa <osa@FreeBSD.org> | 2003-09-24 09:37:11 +0000 |
commit | fad424db6aa8e3d5d3787f06534ab341318a0851 (patch) | |
tree | 16c65d0d30c32fd9ee844536c6aa0ee73c37274d /editors/jed | |
parent | 93bb34061fad01e2d453b6d0a6b4652d12a96df6 (diff) | |
download | FreeBSD-ports-fad424db6aa8e3d5d3787f06534ab341318a0851.zip FreeBSD-ports-fad424db6aa8e3d5d3787f06534ab341318a0851.tar.gz |
Make portlint(1) happy by changing strip to ${STRIP_CMD}
Submitted by: Oleg Karachevtsev <ok@etrust.ru>
PR: 56998
Diffstat (limited to 'editors/jed')
-rw-r--r-- | editors/jed/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/jed/Makefile b/editors/jed/Makefile index e133efe..42d634b 100644 --- a/editors/jed/Makefile +++ b/editors/jed/Makefile @@ -36,11 +36,11 @@ pre-install: ${LN} -sf ${WRKSRC}/autoconf/mkinsdir.sh ${WRKSRC}/ post-install: - strip ${PREFIX}/bin/jed - strip ${PREFIX}/bin/rgrep - strip ${PREFIX}/lib/jed/bin/getmail + ${STRIP_CMD} ${PREFIX}/bin/jed + ${STRIP_CMD} ${PREFIX}/bin/rgrep + ${STRIP_CMD} ${PREFIX}/lib/jed/bin/getmail .for f in ${XJED} - strip ${PREFIX}/bin/$f + ${STRIP_CMD} ${PREFIX}/bin/$f .endfor # ${CP} -R ${WRKSRC}/lib/* ${PREFIX}/lib/jed/lib ${INSTALL_DATA} ${WRKSRC}/lib/vms_shell.com ${PREFIX}/lib/jed/lib |