diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2008-11-08 22:54:17 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2008-11-08 22:54:17 +0000 |
commit | b49e2700ed9f7f231a2159be5debf237cc7fd8c6 (patch) | |
tree | 418a3a0716148bc739a4eeb0b35a6c162d6f64db /editors/rox-edit | |
parent | f60bb300df1260506d605835483206775daaa7ca (diff) |
Use PYTHON_CMD with the -m flag to run compileall (avoid referencing PYTHON_SITELIBDIR).
Notes
Notes:
svn path=/head/; revision=222575
Diffstat (limited to 'editors/rox-edit')
-rw-r--r-- | editors/rox-edit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/rox-edit/Makefile b/editors/rox-edit/Makefile index 3518bb5c85f2..690764437170 100644 --- a/editors/rox-edit/Makefile +++ b/editors/rox-edit/Makefile @@ -27,8 +27,8 @@ post-extract: @${FIND} ${WRKSRC} -name CVS | ${XARGS} ${RM} -rf do-build: - @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} - @${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} + @${PYTHON_CMD} -m compileall ${WRKSRC} + @${PYTHON_CMD} -O -m compileall ${WRKSRC} do-install: @${MKDIR} ${PREFIX}/apps |