Skip to content

Commit

Permalink
Prioritize package folder in PATH (#26116)
Browse files Browse the repository at this point in the history
Signed-off-by: Uilian Ries <[email protected]>
Co-authored-by: ErniGH <[email protected]>
  • Loading branch information
uilianries and ErniGH authored Dec 5, 2024
1 parent 845a12b commit b5dd046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/mingw-w64/linux/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def generate(self):

# Add binutils to path. Required for gcc build.
env = Environment()
env.append_path("PATH", os.path.join(self.package_folder, "bin"))
env.prepend_path("PATH", os.path.join(self.package_folder, "bin"))
env.vars(self).save_script("conanbuild_package_bin_path")

venv = VirtualBuildEnv(self)
Expand Down

0 comments on commit b5dd046

Please sign in to comment.