diff options
author | lloyd <[email protected]> | 2009-11-20 02:18:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-20 02:18:10 +0000 |
commit | 396a1c77b3a3548aae80ceebfb4932a67104210b (patch) | |
tree | 1b0ca891664208b2b53e0bd164daf93cbd98c6b0 /configure.py | |
parent | d0da1f44d22e28c051db55305fa41bf7d7206150 (diff) |
If no so link command is set just use the empty string; let the user figure it out
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 82e8b6129..600fec38d 100755 --- a/configure.py +++ b/configure.py @@ -610,7 +610,9 @@ class CompilerInfo(object): def so_link_command_for(self, osname): if osname in self.so_link_flags: return self.so_link_flags[osname] - return self.so_link_flags['default'] + if 'default' in self.so_link_flags: + return self.so_link_flags['default'] + return '' """ Return defines for build.h |