Changeset 1232 for trunk/bin


Ignore:
Timestamp:
09/01/06 13:14:11 (18 years ago)
Author:
mar637
Message:

Merge from Release2.1.0b tag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/install

    r1210 r1232  
    2929    for l in p.readlines():
    3030        lsp = l.split()
    31         if lsp[2] == "not":
    32             unresolved.append(lsp[0])
    33         else:
    34             resolved.append(lsp[2])
     31        # test this to avoid fails on linux_gate, which has no library
     32        if len(lsp) >= 3:
     33            if lsp[2] == "not":
     34                unresolved.append(lsp[0])
     35            else:
     36                resolved.append(lsp[2])
    3537    return resolved, unresolved
    3638
     
    7981        print "   All required libraries are present."
    8082except IOError,msg:
    81     print msg+" Skipping test."
     83    print "Skipping test. (%s)" % msg
    8284
    8385print 'Looking for dependent python modules...'
Note: See TracChangeset for help on using the changeset viewer.