Generation of dependency files is turned off for universal builds, so we'll have to clean builds on osx too. :-(

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71901 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2012-06-30 21:01:11 +00:00
parent 3141f18de4
commit 13bc06d908

View File

@@ -135,8 +135,9 @@ def makeFactory(port, buildType='buildOnly', pyVer='2.7'):
method = None
clean = ''
# Since the wx build doesn't have good dependency checking on MSW, clean first
if port in ['win32', 'win64']:
# Since the wx build doesn't have good dependency checking on MSW, clean first.
# Generation of dependency files is turned off for universal builds, so clean on osx too.
if port in ['win32', 'win64', 'osx']:
clean = 'clean'
# Start from a clean build tree for the daily builds