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 8ff0adf commit d432d3bCopy full SHA for d432d3b
recipes/libsocketcan/all/conanfile.py
@@ -38,8 +38,10 @@ def validate(self):
38
39
def build_requirements(self):
40
self.tool_requires("libtool/2.4.7")
41
- if not self.conf.get("tools.gnu:pkg_config", check_type=str):
42
- self.tool_requires("pkgconf/[>=2.2 <3]")
+ if self.settings_build.os == "Windows":
+ self.win_bash = True
43
+ if not self.conf.get("tools.microsoft.bash:path", check_type=str):
44
+ self.tool_requires("msys2/cci.latest")
45
46
def source(self):
47
get(self, **self.conan_data["sources"][self.version], strip_root=True)
0 commit comments