# HG changeset patch # User hamel.phil # Date 1294945095 0 # Node ID c257ef1919f33473432f09159886d3f67c6fe095 # Parent 5f51427130f839b88177f531671cab6502560c77 Changed a comment diff -r 5f51427130f8 -r c257ef1919f3 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"], )