diff swig/setup.py @ 156:c257ef1919f3

Changed a comment
author hamel.phil
date Thu, 13 Jan 2011 18:58:15 +0000
parents 2abaf1a47a37
children 9fcf55c040fe
line wrap: on
line diff
--- 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 <tom@acousticscale.org>",
        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"],
        )