Skip to content

Commit 50c5ba6

Browse files
committed
make sure dispatch is unset when it does not apply
This allows to have it set explicitly without breaking anything on other architectures.
1 parent 55d9c43 commit 50c5ba6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ detect_x86_arch = $(shell $(CC) -dumpmachine | grep -E 'i[3-6]86|x86_64')
5959
ifneq ($(strip $(call detect_x86_arch)),)
6060
#note: can be overridden at compile time, by setting DISPATCH=0
6161
DISPATCH ?= 1
62+
else
63+
DISPATCH = 0
6264
endif
6365

6466
ifeq ($(NODE_JS),1)

0 commit comments

Comments
 (0)