From 1947c1e2edd1bb7553b8434873b3ae89638c1ec7 Mon Sep 17 00:00:00 2001 From: Martin Thomson Date: Thu, 12 Jan 2023 22:29:39 +0000 Subject: Bug 1766767 - Move scripts to python3, r=nss-reviewers,jschanck Differential Revision: https://phabricator.services.mozilla.com/D166506 --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index bbb8d04a4..451789591 100755 --- a/build.sh +++ b/build.sh @@ -129,8 +129,8 @@ while [ $# -gt 0 ]; do --disable-keylog) sslkeylogfile=0 ;; --enable-legacy-db) gyp_params+=(-Ddisable_dbm=0) ;; --mozilla-central) gyp_params+=(-Dmozilla_central=1) ;; - --python) python="$2"; shift ;; - --python=*) python="${1#*=}" ;; + --python) python="$2"; shift ;; + --python=*) python="${1#*=}" ;; -D*) gyp_params+=("$1") ;; *) show_help; exit 2 ;; esac @@ -143,7 +143,7 @@ fi if [ -z "$target_arch" ]; then # Assume that the target architecture is the same as the host by default. - host_arch=$(${python:-python} "$cwd/coreconf/detect_host_arch.py") + host_arch=$(${python:-python3} "$cwd/coreconf/detect_host_arch.py") target_arch=$host_arch fi -- cgit v1.2.1