diff options
author | Steven Knight <knight@baldmt.com> | 2002-08-26 23:50:45 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-08-26 23:50:45 (GMT) |
commit | bcf8b965b4a711d5f5d8a672aeb4943b433db11d (patch) | |
tree | e1886f3f88b79a9fb61c33feedd7caddc9173fac /SConstruct | |
parent | 3b0b846c4cbda7e32c1d1ca3d9f6787f59f5b820 (diff) | |
download | SCons-bcf8b965b4a711d5f5d8a672aeb4943b433db11d.zip SCons-bcf8b965b4a711d5f5d8a672aeb4943b433db11d.tar.gz SCons-bcf8b965b4a711d5f5d8a672aeb4943b433db11d.tar.bz2 |
Fix the SConstruct to avoid zipit NameError if zip isn't available.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -37,7 +37,7 @@ import sys import time project = 'scons' -default_version = '0.08' +default_version = '0.09' Default('.') @@ -172,6 +172,8 @@ zcat = 'gzip -d -c' # # Figure out if we can handle .zip files. # +zipit = None +unzipit = None try: import zipfile |