From: stevenknight Date: Mon, 26 Aug 2002 23:50:45 +0000 (+0000) Subject: Fix the SConstruct to avoid zipit NameError if zip isn't available. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7efc6c75fbe3ab3c7f69427fe4eb621b65852e8f;p=scons.git Fix the SConstruct to avoid zipit NameError if zip isn't available. git-svn-id: http://scons.tigris.org/svn/scons/trunk@447 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/SConstruct b/SConstruct index 9f323c03..eb08380d 100644 --- a/SConstruct +++ b/SConstruct @@ -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