summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b02a483)
raw | patch | inline | side by side (parent: b02a483)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 23 Sep 2002 08:17:50 +0000 (08:17 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 23 Sep 2002 08:17:50 +0000 (08:17 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1212 57a73879-2fb5-44c3-a270-3262357dd7e2
setup.py | patch | blob | history |
diff --git a/setup.py b/setup.py
index 52e4edc0bffa2500286d5c201f4fd23a1f1a76be..97ce56f313e26f3102dcc35af987d7b4d890ad04 100644 (file)
--- a/setup.py
+++ b/setup.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: setup.py,v 1.38 2002-09-10 01:07:05 richard Exp $
+# $Id: setup.py,v 1.39 2002-09-23 08:17:50 richard Exp $
from distutils.core import setup, Extension
from distutils.util import get_platform
try:
if sys.platform == "win32":
file.write('@echo off\n'
- 'if NOT "%%_4ver%%" == "" %(python)s -c "from %(package)s.scripts.%(module)s import run; run()" %%$\n'
- 'if "%%_4ver%%" == "" %(python)s -c "from %(package)s.scripts.%(module)s import run; run()" %%*\n'
+ 'if NOT "%%_4ver%%" == "" %(python)s -O -c "from %(package)s.scripts.%(module)s import run; run()" %%$\n'
+ 'if "%%_4ver%%" == "" %(python)s -O -c "from %(package)s.scripts.%(module)s import run; run()" %%*\n'
% script_vars)
else:
- file.write('#! %(python)s\n'
+ file.write('#! %(python)s -O\n'
'from %(package)s.scripts.%(module)s import run\n'
'run()\n'
% script_vars)