Changeset 437
- Timestamp:
- Mon Feb 25 11:42:16 2008
- Files:
-
- branches/python2.5/bindepend.py (modified) (diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
branches/python2.5/bindepend.py
r431 r437 282 282 for lib in dlls: 283 283 if not iswin and not cygwin: 284 # plain win case 284 285 npth = lib 285 286 dir, lib = os.path.split(lib) … … 287 288 continue 288 289 else: 290 # all other platforms 289 291 npth = getfullnameof(lib, os.path.dirname(pth)) 292 293 # now npth is a candidate lib 294 # check again for excludes but with regex FIXME: split the list 290 295 if excludesRe.search(npth): 291 296 if 'libpython' not in npth and 'Python.framework' not in npth: 297 # skip libs not containing (libpython or Python.framework) 298 #print "I: skipping", npth 292 299 continue 300 else: 301 #print "I: inserting", npth 302 pass 303 293 304 if npth: 294 305 rv.append((lib, npth))
