aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-03-04 10:57:25 -0500
committerJack Lloyd <[email protected]>2020-03-04 11:32:06 -0500
commit10d32f9d56dafb80ea8fa601af4c020613886a36 (patch)
tree8983bfd8ec2fbd6700c925a6c0290a317978630d /configure.py
parentd3f4851e52fb4b099f5b043ed22944f3f17534f8 (diff)
Remove support for running macOS binaries from local dir
This is a lot of complications just to work around a user misaprehension about ld paths. And likely most macOS users are getting it via Homebrew anyway. Taken from #1505
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.py b/configure.py
index c106fcfcf..a25d5e6aa 100755
--- a/configure.py
+++ b/configure.py
@@ -1476,7 +1476,6 @@ class OsInfo(InfoObject): # pylint: disable=too-many-instance-attributes
'doc_dir': 'share/doc',
'man_dir': 'share/man',
'use_stack_protector': 'true',
- 'so_post_link_command': '',
'cli_exe_name': 'botan',
'lib_prefix': 'lib',
'library_name': 'botan{suffix}-{major}',
@@ -1525,7 +1524,6 @@ class OsInfo(InfoObject): # pylint: disable=too-many-instance-attributes
self.man_dir = lex.man_dir
self.obj_suffix = lex.obj_suffix
self.program_suffix = lex.program_suffix
- self.so_post_link_command = lex.so_post_link_command
self.static_suffix = lex.static_suffix
self.target_features = lex.target_features
self.use_stack_protector = (lex.use_stack_protector == "true")
@@ -2177,7 +2175,6 @@ def create_template_vars(source_paths, build_paths, options, modules, cc, arch,
variables['soname_patch'] = osinfo.soname_pattern_patch.format(**variables)
variables['lib_link_cmd'] = variables['lib_link_cmd'].format(**variables)
- variables['post_link_cmd'] = osinfo.so_post_link_command.format(**variables) if options.build_shared_lib else ''
lib_targets = []
if options.build_static_lib: