Give buildargs a default value of “”

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@75512 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2014-01-01 04:31:52 +00:00
parent 074cf7134d
commit c196e1f96f

View File

@@ -190,7 +190,7 @@ def makeFactory(port, buildType='buildOnly', pyVer='2.7'):
if buildType == 'dist':
cmd += ' bdist_egg --upload'
cmd = cmd.split() + [Property('buildargs')]
cmd = cmd.split() + [Property('buildargs', default='')]
factory.addStep(ShellCommand(command=cmd, workdir="Phoenix",
description="building", descriptionDone="build"))
return factory