mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 23:31:56 +00:00
c173540215
The remaining uses all need adjustements to in-tree mozconfigs, so they all need to be done at once. However, to make things slightly more intelligible, we do this in two steps. This is step 1: we modify the use_toolchain transform to take care of the transformation, while keeping the task definitions intact, so that we only deal with mozconfig and build script adjustements here. Differential Revision: https://phabricator.services.mozilla.com/D41890
13 lines
350 B
Plaintext
13 lines
350 B
Plaintext
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
case "$(uname -s)" in
|
|
MINGW*)
|
|
export NODEJS=$MOZ_FETCHES_DIR/node/node.exe
|
|
;;
|
|
*)
|
|
export NODEJS=$MOZ_FETCHES_DIR/node/bin/node
|
|
;;
|
|
esac
|