From 19dc72e16d2f43ea633a582305aca1d26c5d5a4c Mon Sep 17 00:00:00 2001 From: Mac Clayton Date: Wed, 30 Mar 2016 19:04:57 -0500 Subject: [PATCH] Fix qt4.py to use deque instead of list --- waflib/extras/qt4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waflib/extras/qt4.py b/waflib/extras/qt4.py index 63f901bd..37db63e8 100644 --- a/waflib/extras/qt4.py +++ b/waflib/extras/qt4.py @@ -155,7 +155,7 @@ class qxx(Task.classes['cxx']): # direct injection in the build phase (safe because called from the main thread) gen = self.generator.bld.producer - gen.outstanding.insert(0, tsk) + gen.outstanding.appendleft(tsk) gen.total += 1 return tsk