mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 00:32:11 +00:00
2e3619211c
Differential Revision: https://phabricator.services.mozilla.com/D20037 --HG-- extra : moz-landing-system : lando
13 lines
330 B
NASM
13 lines
330 B
NASM
# 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 NASM=$topsrcdir/nasm/nasm.exe
|
|
;;
|
|
*)
|
|
export NASM=$topsrcdir/nasm/nasm
|
|
;;
|
|
esac
|