diff options
author | Simon Warta <[email protected]> | 2017-04-04 18:18:17 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-04-04 18:18:17 +0200 |
commit | 37e4ce9126a5c1d58b9617359055d9f504d373c7 (patch) | |
tree | eb74dd7bf4d6044e8890602653cad106751e5423 /configure.py | |
parent | f9385f5a3c3d4bdd617ac1bbbca71e131fbc97a2 (diff) |
Fix bug in string formatter
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 4e6974cd9..69b69526a 100755 --- a/configure.py +++ b/configure.py @@ -1459,7 +1459,7 @@ def gen_cmake(build_paths, using_mods, cc, options): target['libs'].add(lib) if options.os in using_mod.frameworks: for framework in using_mod.frameworks[options.os]: - target['frameworks'].add('"-framework %"' % framework) + target['frameworks'].add('"-framework %s"' % framework) def generate_target_sources_list(fd, target_name, target): fd.write('set(%s\n' % target_name) |