Skip to content

Commit

Permalink
Fix add_cmake_flag in cmake helper (#4227)
Browse files Browse the repository at this point in the history
  • Loading branch information
blastrock authored and memsharded committed Jan 8, 2019
1 parent 643a9c8 commit 7f239e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conans/client/build/cmake_flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def add_cmake_flag(cmake_flags, name, flag):
if name not in cmake_flags:
cmake_flags[name] = flag
else:
cmake_flags[name] = ' ' + flag
cmake_flags[name] += ' ' + flag
return cmake_flags


Expand Down

0 comments on commit 7f239e1

Please sign in to comment.