What it really meant was to run "python -O Configure.py".
--
Giovanni Bajo :: ra...@develer.com
Develer S.r.l. :: http://www.develer.com
My Blog: http://giovanni.bajo.it
Last post: Compile-time Function Execution in D
This OPTION is used to switch the optimization flag within the runtime
interpreter. Usually, the flag affects only the way Python compiles the
bytecode (it generates .pyo instead of .pyc).
If you run PyInstaller with python -o Build.py, the generated file will
contain ONLY pyo files. At that point, even without the OPTION, it will
only execute those file.
So the OPTION is not necessary for what you were trying to achieve, as
far as I can tell.