diff options
-rw-r--r-- | recipes/libvpx.recipe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/libvpx.recipe b/recipes/libvpx.recipe index 7a60a575..b35058a6 100644 --- a/recipes/libvpx.recipe +++ b/recipes/libvpx.recipe @@ -146,8 +146,9 @@ class Recipe(recipe.Recipe): shutil.copy(o, f) elif self.using_msvc(): # Visual Studio solution hard-codes yasm + nasm = os.path.join(self.config.build_tools_prefix, 'bin', 'nasm.exe') shell.replace(os.path.join(self.build_dir, 'build/make/gen_msvs_vcxproj.sh'), - {'yasm ': 'nasm ', '-Xvc -g cv8': '-Xvc -g -F cv8'}) + {'yasm': nasm, '-Xvc -g cv8': '-Xvc -g -F cv8'}) await super().configure() async def install(self): |