diff options
author | Jack Lloyd <[email protected]> | 2019-02-28 08:23:48 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-02-28 08:23:48 -0500 |
commit | a9d2cceb52ea93291f37c2a8da4a91bb13a4fbf6 (patch) | |
tree | 382c51e3127ac33ed621c4e72959f89ef6e12b12 | |
parent | ad1c79efac6b32f16e783226c6ec4c4cd1dd4342 (diff) | |
parent | c38dbdddc672052c8bf524a50c973b51e9ca6ca1 (diff) |
Merge GH #1846 Fix CMake build
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index a4c2d2372..202bb40df 100755 --- a/configure.py +++ b/configure.py @@ -2009,7 +2009,7 @@ def create_template_vars(source_paths, build_paths, options, modules, cc, arch, } variables['lib_flags'] = cc.gen_lib_flags(options, variables) - variables['cmake_shared_flags'] = cmake_escape(variables['lib_flags']) + variables['cmake_lib_flags'] = cmake_escape(variables['lib_flags']) if options.with_pkg_config: variables['botan_pkgconfig'] = os.path.join(build_paths.build_dir, 'botan-%d.pc' % (Version.major())) |