# HG changeset patch # User hamel.phil # Date 1294945095 0 # Node ID 88b515b1a453c84dbd8d4a25dbaf16567715d730 # Parent 35987061c93b816748fcf93e0febb324e834236f Changed a comment diff -r 35987061c93b -r 88b515b1a453 swig/setup.py --- a/swig/setup.py Thu Jan 13 18:49:40 2011 +0000 +++ b/swig/setup.py Thu Jan 13 18:58:15 2011 +0000 @@ -46,7 +46,9 @@ version = '0.1', author = "Thomas Walters ", description = """SWIG wrapper round the core of aimc""", - options={'build_ext':{'swig_opts':'-c++ -I../src/'}}, #Some versions of SWIG require that we repeat the options here + # A bug with some versions of SWIG/distutils/python and some configurations requires + # us to repeat the swig_opts here. + options={'build_ext':{'swig_opts':'-c++ -I../src/'}}, ext_modules = [aimc_module], py_modules = ["aimc"], )