aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-04-04 18:18:17 +0200
committerSimon Warta <[email protected]>2017-04-04 18:18:17 +0200
commit37e4ce9126a5c1d58b9617359055d9f504d373c7 (patch)
treeeb74dd7bf4d6044e8890602653cad106751e5423
parentf9385f5a3c3d4bdd617ac1bbbca71e131fbc97a2 (diff)
Fix bug in string formatter
-rwxr-xr-xconfigure.py2
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)