From 0580814352f1baf9dc4ce3d96bd93d5d1e5853ef Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Fri, 1 Jul 2022 09:56:40 +0200 Subject: Fix passing macos flag to jinja CURA-9365 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conanfile.py') diff --git a/conanfile.py b/conanfile.py index 067d1a231b..b262fa89da 100644 --- a/conanfile.py +++ b/conanfile.py @@ -196,7 +196,7 @@ class CuraConan(ConanFile): upx = str(self.settings.os == "Windows"), strip = str(self.settings.os != "Windows"), target_arch = "'x86_64'" if self.settings.os == "Macos" else "None", # FIXME: Make this dependent on the settings.arch_target - macos = "'{}'".format(str(self.settings.os == "Macos")) + macos = self.settings.os == "Macos" )) def source(self): -- cgit v1.2.3