Bug 1608326 - don't unset WASM_SANDBOXED_LIBRARIES for Linux artifact builds; r=firefox-build-system-reviewers,chmanchester

Otherwise we won't package the necessary libraries, which leads to
peculiar runtime failures.

Depends on D59555

Differential Revision: https://phabricator.services.mozilla.com/D59556

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Nathan Froyd 2020-01-10 19:56:56 +00:00
Родитель c27f84822c
Коммит 798b9b9ec1
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,11 @@ unset NM
unset RANLIB
unset NASM
unset WASM_SANDBOXED_LIBRARIES
# Don't unset this on Linux artifact builds so the artifact builds correctly
# package the graphite shared library.
if test `uname -s` != Linux; then
unset WASM_SANDBOXED_LIBRARIES
fi
unset WASM_CC
unset WASM_CXX
unset LUCETC