diff options
| -rw-r--r-- | setup.py | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -433,7 +433,8 @@ class PyBuildExt(build_ext):          # _json speedups          exts.append( Extension("_json", ["_json.c"]) )          # Python C API test module -        exts.append( Extension('_testcapi', ['_testcapimodule.c']) ) +        exts.append( Extension('_testcapi', ['_testcapimodule.c'], +                               depends=['testcapi_long.h']) )          # profiler (_lsprof is for cProfile.py)          exts.append( Extension('_lsprof', ['_lsprof.c', 'rotatingtree.c']) )          # static Unicode character database | 
