diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-09-23 13:16:28 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-09-23 13:16:28 +0000 |
commit | c5a845f12829895fe4c3e8f47cd34d5bd40ff14a (patch) | |
tree | f9cafba708659ca48896d855421746edc2dd8bbf /numpy | |
parent | baa815693a1888b0d933d342fe17bcfba106001f (diff) | |
download | numpy-c5a845f12829895fe4c3e8f47cd34d5bd40ff14a.tar.gz |
fixing link error: added debug message, 2.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index 9bd965895..d75922768 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -381,7 +381,7 @@ def gen_lib_options(compiler, library_dirs, runtime_library_dirs, libraries): lib_opts.extend(list(i)) else: lib_opts.append(i) - print 'DEBUG:',lib_opts, library_dirs, runtime_library_dirs + log.info('DEBUG:'+`lib_opts, library_dirs, runtime_library_dirs`) return lib_opts ccompiler.gen_lib_options = gen_lib_options |