From 13bc06d908045cca0dcfe0bed86290f9513d3179 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 30 Jun 2012 21:01:11 +0000 Subject: [PATCH] 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 --- buildbot/master.cfg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildbot/master.cfg b/buildbot/master.cfg index 82e87ca4..aa102ab3 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -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