* put a try block around import subprocess. Apparently there can be broken python installs without the subprocess module. This is useful on win32 with mingw only anyway.

This commit is contained in:
Nathan Letwory 2007-06-06 07:07:58 +00:00
parent b0921f3d79
commit 9a78468ab0

@ -2,7 +2,10 @@ import os
import os.path
import SCons.Options
import SCons.Options.BoolOption
import subprocess
try:
import subprocess
except ImportError:
pass
import string
import glob
import shutil