Skip to content

Commit

Permalink
Update recipes/nspr/all/conanfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SSE4 authored Feb 23, 2022
1 parent d25fdb1 commit 0a8b084
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/nspr/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ def _configure_autotools(self):
if self.settings.compiler == "Visual Studio":
conf_args.extend([
"{}-pc-mingw32".format("x86_64" if self.settings.arch == "x86_64" else "x86"),
"--enable-static-rtl={}".format(yes_no("MT" in self.settings.compiler.runtime)),
"--enable-debug-rtl={}".format(yes_no("d" in self.settings.compiler.runtime)),
"--enable-static-rtl" if "MT" in str(self.settings.compiler.runtime) else "--disable-static-rtl",
"--enable-debug-rtl" if "d" in str(self.settings.compiler.runtime) else "--disable-debug-rtl",
])
elif self.settings.os == "Android":
conf_args.extend([
Expand Down

0 comments on commit 0a8b084

Please sign in to comment.