From ba7b4e09ccf30a4ac0afb6379fc56db616793c55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20Ol=C3=A1h?= Date: Wed, 15 Nov 2023 19:08:47 +0100 Subject: [PATCH] Remove non-existsent emnm. It doesn't seem to exist in the the emscripten nix package. --- lib/ffmpeg/BUILD.bazel | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ffmpeg/BUILD.bazel b/lib/ffmpeg/BUILD.bazel index 69d62e0..4260bc7 100644 --- a/lib/ffmpeg/BUILD.bazel +++ b/lib/ffmpeg/BUILD.bazel @@ -58,7 +58,6 @@ CONFIGURE_OPTIONS_WASM = [ # so we pass this explicit --cc flag to set the right compiler. "--cc=$(execpath @emscripten//:emcc)", "--ar=$(execpath @emscripten//:emar)", - "--nm=$(execpath @emscripten//:emnm)", "--ranlib=$(execpath @emscripten//:emranlib)", ] + CONFIGURE_OPTIONS + [ # Some of these are copied from: @@ -110,7 +109,6 @@ configure_make_lib( "//cond:emscripten": [ "@emscripten//:emar", "@emscripten//:emcc", - "@emscripten//:emnm", "@emscripten//:emranlib", ], "//conditions:default": BUILD_DEPS_K8, @@ -155,7 +153,6 @@ configure_make( build_data = EM_TOOLS + [ "@emscripten//:emar", "@emscripten//:emcc", - "@emscripten//:emnm", "@emscripten//:emranlib", "@ffmpeg_wasm//:bind", "@ffmpeg_wasm//:export",