File scons-1.0.1-python26.patch of Package scons
--- engine/SCons/Util.py +++ engine/SCons/Util.py @@ -968,6 +968,10 @@ """ def __init__(self, seq = []): UserList.__init__(self, Split(seq)) + def __add__(self, other): + return UserList.__add__(self, CLVar(other)) + def __radd__(self, other): + return UserList.__radd__(self, CLVar(other)) def __coerce__(self, other): return (self, CLVar(other)) def __str__(self):