mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 00:20:40 -04:00
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
11 lines
419 B
Python
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 ..."
|