changeset 267:88b515b1a453

Changed a comment
author hamel.phil
date Thu, 13 Jan 2011 18:58:15 +0000
parents 35987061c93b
children f8ba7ad93fa9
files swig/setup.py
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
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"],
        )