From e3d75409c3e307203d3fa55ca3ac3a467b660ea5 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 12 Jul 2012 23:59:39 +0000 Subject: [PATCH] Also check the .sip file being run when looking at dependencies. Fixes a problem of sip being skipped if the only change was in _core.sip, for example. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72056 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 7f1efff7..45627a6f 100755 --- a/build.py +++ b/build.py @@ -712,7 +712,7 @@ def sip(options, args): # produced by the previous run of sip. If not then we don't need to # run sip again. etg = loadETG(posixjoin('etg', base + '.py')) - sipFiles = getSipFiles(etg.INCLUDES) + sipFiles = getSipFiles(etg.INCLUDES) + [opj(cfg.SIPGEN, base+'.sip')] if not newer_group(sipFiles, sbf) and os.path.exists(pycode): continue