fix a comment

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@66473 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2010-12-27 20:38:10 +00:00
parent 39b5167c96
commit 89c825b7e9

View File

@@ -165,22 +165,22 @@ def setPythonVersion(args):
def setDevModeOptions(args):
# Using --dev is a shortcut for setting several build options that
# I use while working on the code in my local workspaces. Most
# people will probably not use this so it is not part for the
# documented options and is explicitly handled here before the
# options parser is created. If anybody besides Robin is using
# this option do not depend on the options it inserts into the
# args list being consistent. They could change at any update
# from the repository.
# Using --dev is a shortcut for setting several build options that I use
# while working on the code in my local workspaces. Most people will
# probably not use this so it is not part for the documented options and
# is explicitly handled here before the options parser is created. If
# anybody besides Robin is using this option do not depend on the options
# it inserts into the args list being consistent. They could change at any
# update from the repository.
myDevModeOptions = [
'--sip',
'--build_dir=../bld',
'--prefix=/opt/wx/2.9',
# These will be ignored on the other platforms so it is okay to
# include them here
# include them unconditionally
'--osx_cocoa',
#'--osx_carbon',
'--mac_arch=i386',
]
if not isWindows: