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 /x11/rox-wallpaper | |
parent | f60bb300df1260506d605835483206775daaa7ca (diff) | |
download | ports-b49e2700ed9f7f231a2159be5debf237cc7fd8c6.tar.gz ports-b49e2700ed9f7f231a2159be5debf237cc7fd8c6.zip |
Use PYTHON_CMD with the -m flag to run compileall (avoid referencing PYTHON_SITELIBDIR).
Notes
Notes:
svn path=/head/; revision=222575
Diffstat (limited to 'x11/rox-wallpaper')
-rw-r--r-- | x11/rox-wallpaper/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/rox-wallpaper/Makefile b/x11/rox-wallpaper/Makefile index 0a0c316d1e9a..0cba659b546f 100644 --- a/x11/rox-wallpaper/Makefile +++ b/x11/rox-wallpaper/Makefile @@ -23,8 +23,8 @@ USE_BZIP2= yes USE_PYTHON= yes 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 |