Skip to content

Commit 4480966

Browse files
committed
1.53 is not enough to rely on settings_build
1 parent 889cd1d commit 4480966

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes/openssl/1.x.x/conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def generate(self):
256256
# 1.1.0 era Makefiles don't do well with parallel installs
257257
if not self._use_nmake and self._full_version >= "1.1.0" and self._full_version < "1.1.1":
258258
tc.make_args = ["-j1"]
259-
if self.settings_build.get_safe('os') == "Macos" and not cross_building(self):
259+
if self.settings.os == "Macos" and not cross_building(self):
260260
tc.extra_cflags = ["-isysroot {}".format(XCRun(self).sdk_path)]
261261
tc.extra_cxxflags = ["-isysroot {}".format(XCRun(self).sdk_path)]
262262
tc.extra_ldflags = ["-isysroot {}".format(XCRun(self).sdk_path)]

0 commit comments

Comments
 (0)