We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 889cd1d commit 4480966Copy full SHA for 4480966
recipes/openssl/1.x.x/conanfile.py
@@ -256,7 +256,7 @@ def generate(self):
256
# 1.1.0 era Makefiles don't do well with parallel installs
257
if not self._use_nmake and self._full_version >= "1.1.0" and self._full_version < "1.1.1":
258
tc.make_args = ["-j1"]
259
- if self.settings_build.get_safe('os') == "Macos" and not cross_building(self):
+ if self.settings.os == "Macos" and not cross_building(self):
260
tc.extra_cflags = ["-isysroot {}".format(XCRun(self).sdk_path)]
261
tc.extra_cxxflags = ["-isysroot {}".format(XCRun(self).sdk_path)]
262
tc.extra_ldflags = ["-isysroot {}".format(XCRun(self).sdk_path)]
0 commit comments