ports/devel/scons/files/patch-script-Main.py
Pav Lucistnik bf708b7ae2 - Add patches to fix build of blender-devel. Other scons using ports
were tested to continue working.

PR:		ports/79064
Submitted by:	Michal Varga <varga@stonehenge.sk>
Approved by:	maintainer timeout (14 days)
Obtained from:	scons CVS
2005-04-04 21:57:07 +00:00

11 lines
419 B
Python

--- engine/SCons/Script/Main.py.orig Wed Feb 16 03:12:11 2005
+++ engine/SCons/Script/Main.py Sat Mar 19 23:40:24 2005
@@ -1024,7 +1034,7 @@
node = None
return node
- nodes = filter(lambda x: x is not None, map(Entry, targets))
+ nodes = filter(None, map(Entry, targets))
task_class = BuildTask # default action is to build targets
opening_message = "Building targets ..."