Fix default ARCH_OPENSSL in Linux Makefile

It was broken when introducing s390x support.
This commit is contained in:
Splendide Imaginarius 2024-09-03 06:15:35 +00:00
parent a6d1c22c81
commit 304132979d

View file

@ -1,5 +1,5 @@
ARCH ?= $(shell uname -m)
ARCH_OPENSSL ?= $(ARCH)
ARCH_OPENSSL ?= linux-$(ARCH)
ARCH_CFLAGS ?=
ARCH_CONFIGURE ?= $(shell gcc -dumpmachine)