Skip to content

Commit

Permalink
Always use conan nasm package
Browse files Browse the repository at this point in the history
Without requirement /usr/bin/nasm binary is used for mac
but it does not work. Only homebrew basm works.
  • Loading branch information
theirix committed Nov 19, 2019
1 parent 7bc07dc commit 71a4f41
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions recipes/mozjpeg/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ def configure(self):
del self.settings.compiler.cppstd

def build_requirements(self):
if not tools.which("nasm"):
self.build_requires("nasm/2.13.02")
self.build_requires("nasm/2.13.02")

def source(self):
tools.get(**self.conan_data["sources"][self.version])
Expand Down

0 comments on commit 71a4f41

Please sign in to comment.