Skip to content

Commit

Permalink
Make m4 a build requirement as well as a run-time requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
System-Arch authored Feb 14, 2023
1 parent da1f782 commit 628a11e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/autoconf/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ def package_id(self):
self.info.clear()

def requirements(self):
self.requires("m4/1.4.19")
self.requires("m4/1.4.19") # Needed at runtime by downstream clients as well

def build_requirements(self):
self.tool_requires("m4/1.4.19")
if self._settings_build.os == "Windows":
self.win_bash = True
if not self.conf.get("tools.microsoft.bash:path", check_type=str):
Expand Down

0 comments on commit 628a11e

Please sign in to comment.