summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorlegendecas <legendecas@gmail.com>2019-12-10 17:17:09 +0800
committerRich Trott <rtrott@gmail.com>2019-12-13 20:52:31 -0500
commit1807c3eadffb6fb42e4d4c482d265dcef1761535 (patch)
tree330c11cd0867e8a18d2fd8efa853490d83dec21e /Makefile
parent8e58c7557bd4ebec5240810c18f41d057534f3b2 (diff)
downloadnode-new-1807c3eadffb6fb42e4d4c482d265dcef1761535.tar.gz
build: fix missing x64 arch suffix in binary tar name
PR-URL: https://github.com/nodejs/node/pull/30877 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6b678889ca..34cdec7f77 100644
--- a/Makefile
+++ b/Makefile
@@ -842,6 +842,7 @@ endif
endif
endif
endif
+endif
ifeq ($(DESTCPU),x64)
ARCH=x64
else
@@ -871,7 +872,6 @@ endif
endif
endif
endif
-endif
# node and v8 use different arch names (e.g. node 'x86' vs v8 'ia32').
# pass the proper v8 arch name to $V8_ARCH based on user-specified $DESTCPU.