Skip to content

Commit

Permalink
1.53 is not enough to rely on settings_build
Browse files Browse the repository at this point in the history
  • Loading branch information
System-Arch committed Nov 6, 2022
1 parent 889cd1d commit 4480966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/openssl/1.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 4480966

Please sign in to comment.