Skip to content

Commit

Permalink
set fpic to false only if on apple
Browse files Browse the repository at this point in the history
  • Loading branch information
gagelarsen committed Jul 13, 2018
1 parent 3fdee2f commit 8c0061d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def configure(self):
if s_compiler != "Visual Studio" and s_compiler != "apple-clang":
print("*****FPIC TRUE*****")
self.options['boost'].fPIC = True
else:
elif s_compiler == "apple-clang":
self.options['boost'].fPIC = False

if s_compiler == "apple-clang" and s_os == 'Linux':
Expand Down

0 comments on commit 8c0061d

Please sign in to comment.