Why does build_ext accept -R but not build?
Nov. 17, 2006
5:59 p.m.
Why does "python setup.py build_ext" accept -R but "python setup.py build" does not? Isn't build a superset of build_ext? This is for Python 2.4.2. -- albert chin (china@thewrittenword.com)
Nov. 17, 2006
11:04 p.m.
At 11:59 AM 11/17/2006 -0600, Albert Chin wrote:
Why does "python setup.py build_ext" accept -R but "python setup.py build" does not? Isn't build a superset of build_ext?
No; build just provides defaults for the build_* commands and runs them. Just do "python setup.py build_ext -Rwhatever build"; the build_ext command will only get run once, and with the options you supply. I think you can also do it as "python setup.py build build_ext -Rwhatever", but the commands will run in a slightly different order in that case.
7235
Age (days ago)
7235
Last active (days ago)
1 comments
2 participants
participants (2)
-
Albert Chin -
Phillip J. Eby