Skip to content

wasm: build: fix vlc tools PATH setting

Khalid Masum requested to merge Labnann/vlc:wasm-pathfix into master

Previously:

  • $PATH was set incorrectly to wasm-emscripten/bin which is supposed to be wasm-emscripten/build/bin

  • $PATH was updated after making the tools

Hence,

  • The tools would be rebuilt every time build script is run.

  • The setting of PATH variable would do nothing anyway even if it was correct, as correct PATH is going to be set by the configure script later anyway.

This patch will repurpose the line to avoid rebuilding of already built tools.

Merge request reports