diff options
author | Jack Lloyd <[email protected]> | 2017-05-13 09:47:04 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-05-13 09:47:57 -0400 |
commit | 2c5919cd5aa3d7723919f729cab9938df1cc4f94 (patch) | |
tree | 7436137b94c8ebc98a9820dd900122f9c25375e5 | |
parent | 86cc9393f6a093a48f80c01481e9496220f02c33 (diff) |
Fix configure bug breaking --with-external-libdir
Reported by Marc Espie
[ci skip]
-rwxr-xr-x | configure.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.py b/configure.py index f79d2a62b..43f5ec94d 100755 --- a/configure.py +++ b/configure.py @@ -995,6 +995,7 @@ class CompilerInfo(InfoObject): # pylint: disable=too-many-instance-attributes self.add_framework_option = lex.add_framework_option self.add_include_dir_option = lex.add_include_dir_option self.add_lib_option = lex.add_lib_option + self.add_lib_dir_option = lex.add_lib_dir_option self.ar_command = lex.ar_command self.binary_link_commands = force_to_dict(lex.binary_link_commands) self.binary_name = lex.binary_name |