diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-08-29 16:40:55 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-08-29 16:40:55 (GMT) |
commit | 061f132898d3232420db1c00a5adde13647d7e21 (patch) | |
tree | b8208d3ed4fc2f1ce39c3ae0000b45454062c7ee /Lib/distutils/ccompiler.py | |
parent | e064b41f5ac046fc361fa80af551f5bfab01141c (diff) | |
download | cpython-061f132898d3232420db1c00a5adde13647d7e21.zip cpython-061f132898d3232420db1c00a5adde13647d7e21.tar.gz cpython-061f132898d3232420db1c00a5adde13647d7e21.tar.bz2 |
Patch #973204: Use -rpath instead of -R on Irix and Tru64.
Diffstat (limited to 'Lib/distutils/ccompiler.py')
-rw-r--r-- | Lib/distutils/ccompiler.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index a3b1ffa..e5b9d7c 100644 --- a/Lib/distutils/ccompiler.py +++ b/Lib/distutils/ccompiler.py @@ -1241,7 +1241,11 @@ def gen_lib_options (compiler, library_dirs, runtime_library_dirs, libraries): lib_opts.append (compiler.library_dir_option (dir)) for dir in runtime_library_dirs: - lib_opts.append (compiler.runtime_library_dir_option (dir)) + opt = compiler.runtime_library_dir_option (dir) + if type(opt) is ListType: + lib_opts = lib_opts + opt + else: + lib_opts.append (opt) # XXX it's important that we *not* remove redundant library mentions! # sometimes you really do have to say "-lfoo -lbar -lfoo" in order to |