Changeset 265

Show
Ignore:
Timestamp:
Mon Feb 13 18:38:34 2006
Author:
giovannibajo
Message:

Fix problem with non-boolean UPX variable

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/Build.py

    r252 r265  
    297 297     if not strip and not upx:  
    298 298         return fnm  
      299     if strip:  
      300         strip = 1  
      301     else:  
      302         strip = 0  
      303     if upx:  
      304         upx = 1  
      305     else:  
      306         upx = 0  
    299 307     cachedir = os.path.join(HOMEPATH, 'bincache%d%d' %  (strip, upx))  
    300 308     if not os.path.exists(cachedir):