# HG changeset patch # User hamel.phil # Date 1294945095 0 # Node ID 49b7b984e9571f3b100b96e1512290249ef79cb9 # Parent 649c3390301e31a0486f0d9cf8f013b12b858f65 Changed a comment diff -r 649c3390301e -r 49b7b984e957 trunk/swig/setup.py --- a/trunk/swig/setup.py Thu Jan 13 18:49:40 2011 +0000 +++ b/trunk/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"], )