From eda4032a93e44a2d9b2dc9d654d70244bd2108e0 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Fri, 5 Dec 2008 17:10:56 +0000 Subject: [PATCH] fixed mistake in setup.py.in --- bindings/python/setup.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/setup.py.in b/bindings/python/setup.py.in index 4dfb0c9d2..46f3c1821 100644 --- a/bindings/python/setup.py.in +++ b/bindings/python/setup.py.in @@ -3,6 +3,7 @@ from distutils.core import setup, Extension import os import platform +import sys if '@BOOST_PYTHON_LIB@' == '': print 'You need to pass --enable-python-binding to configure in order ', @@ -28,7 +29,6 @@ def arch(): if platform.system() == 'Windows': # on windows, build using bjam and build an installer import shutil - import sys if os.system('bjam boost=source link=static boost-link=static release msvc-7.1 optimization=space') != 0: print 'build failed' sys.exit(1)