Changeset 1232 for trunk/bin/install
- Timestamp:
 - 09/01/06 13:14:11 (19 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/bin/install (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/bin/install
r1210 r1232 29 29 for l in p.readlines(): 30 30 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]) 35 37 return resolved, unresolved 36 38 … … 79 81 print " All required libraries are present." 80 82 except IOError,msg: 81 print msg+" Skipping test."83 print "Skipping test. (%s)" % msg 82 84 83 85 print 'Looking for dependent python modules...'  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  