From 07e1150e9542f2d7a864090d6e3336d410ecba7c Mon Sep 17 00:00:00 2001 From: legendecas Date: Tue, 10 Dec 2019 17:17:09 +0800 Subject: [PATCH] build: fix missing x64 arch suffix in binary tar name --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b678889ca8986..34cdec7f7767b5 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.