Changeset 244

Show
Ignore:
Timestamp:
Mon Feb 6 08:18:05 2006
Author:
giovannibajo
Message:

Fix ticket #23: ignore linux-gate.so

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/bindepend.py

    r43 r244  
    291 291         if len(tokens) > 2 and tokens[1] == '=>':  
    292 292             lib = string.strip(tokens[2])  
      293             if string.strip(tokens[0])[:10] == 'linux-gate':  
      294                 # linux-gate is a fake library which does not exist and  
      295                 # should be ignored. See also:  
      296                 # http://www.trilithium.com/johan/2005/08/linux-gate/  
      297                 continue  
    293 298             if os.path.exists(lib):  
    294 299                 rslt.append(lib)  
  • trunk/doc/CHANGES.txt

    r241 r244  
    21 21    even under Python 2.4. You can eventually ship your programs really as  
    22 22    single-file executables, even when using the newest Python version!  
      23  + (Linux) Ignore linux-gate.so while calculating dependencies (fix provided  
      24    by Vikram Aggarwal).  
    23 25  
    24 26