From 448096696447e181552adade8c0e321644b003d2 Mon Sep 17 00:00:00 2001 From: System-Arch <33330183+System-Arch@users.noreply.github.com> Date: Sun, 6 Nov 2022 08:30:14 -0500 Subject: [PATCH] 1.53 is not enough to rely on settings_build --- recipes/openssl/1.x.x/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/openssl/1.x.x/conanfile.py b/recipes/openssl/1.x.x/conanfile.py index 919d2bb1faff7..a839d75ad80f6 100644 --- a/recipes/openssl/1.x.x/conanfile.py +++ b/recipes/openssl/1.x.x/conanfile.py @@ -256,7 +256,7 @@ def generate(self): # 1.1.0 era Makefiles don't do well with parallel installs if not self._use_nmake and self._full_version >= "1.1.0" and self._full_version < "1.1.1": tc.make_args = ["-j1"] - if self.settings_build.get_safe('os') == "Macos" and not cross_building(self): + if self.settings.os == "Macos" and not cross_building(self): tc.extra_cflags = ["-isysroot {}".format(XCRun(self).sdk_path)] tc.extra_cxxflags = ["-isysroot {}".format(XCRun(self).sdk_path)] tc.extra_ldflags = ["-isysroot {}".format(XCRun(self).sdk_path)]