View | Details | Raw Unified | Return to bug 2850
Collapse All | Expand All

(-)a/bake/Bake.py (-1 / +1 lines)
 Lines 241-247    Link Here 
241
                found=0
241
                found=0
242
                fmod = None
242
                fmod = None
243
                for mod in enable:
243
                for mod in enable:
244
                    if configuration.lookup(mod).mtype() == "ns" and ((mod>=module.minver() and (mod<=module.maxver() or module.maxver() == None)) or (mod == "ns-3-dev" and module.maxver() == None)):
244
                    if configuration.lookup(mod).mtype() == "ns" and ((mod>=module.minver() and (module.maxver() is None or mod<=module.maxver())) or (mod == "ns-3-dev" and module.maxver() is None)):
245
                        found+= 1
245
                        found+= 1
246
                        fmod = mod
246
                        fmod = mod
247
                if not found==1:
247
                if not found==1:

Return to bug 2850