diff options
author | clsung <clsung@FreeBSD.org> | 2006-08-14 13:03:51 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2006-08-14 13:03:51 +0800 |
commit | 0d5c43d243956e31cca1f3c35742290791482ebd (patch) | |
tree | 1f1f513f903c400836ade2a7ab759ecda7413784 | |
parent | 7e555edd67f61efacd263b348203a287bc46b325 (diff) | |
download | freebsd-ports-gnome-0d5c43d243956e31cca1f3c35742290791482ebd.tar.gz freebsd-ports-gnome-0d5c43d243956e31cca1f3c35742290791482ebd.tar.zst freebsd-ports-gnome-0d5c43d243956e31cca1f3c35742290791482ebd.zip |
- Respect DESTDIR
- @dirrmtry
PR: ports/101882
Submitted by: Gea-Suan Lin <gslin_AT_gslin dot org>
-rw-r--r-- | textproc/nltk_lite/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/nltk_lite/Makefile b/textproc/nltk_lite/Makefile index 588b32eab4f9..c781bb562dd5 100644 --- a/textproc/nltk_lite/Makefile +++ b/textproc/nltk_lite/Makefile @@ -23,8 +23,8 @@ USE_PYTHON_PREFIX= yes post-install: @${FIND} ${PYTHON_SITELIBDIR}/nltk_lite ! -type d | \ - ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} + ${SED} 's,^${TARGETDIR}/,,' >> ${TMPPLIST} @${FIND} ${PYTHON_SITELIBDIR}/nltk_lite -type d | ${SORT} -r | \ - ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + ${SED} 's,^${TARGETDIR}/,@dirrmtry ,' >> ${TMPPLIST} .include <bsd.port.post.mk> |