Fix syntax error (#1806)

Similar previous fix:
668ab8b85c
This commit is contained in:
Brenton Bostick 2022-12-05 15:33:00 -06:00 committed by GitHub
parent 065f42af1d
commit 2f5dc10399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ endif
# Fail if system architecture could not be determined
ifeq ($(ZT_ARCHITECTURE),999)
ERR=$(error FATAL: architecture could not be determined from $(CC) -dumpmachine: $CC_MACH)
ERR=$(error FATAL: architecture could not be determined from $(CC) -dumpmachine: $(CC_MACH))
.PHONY: err
err: ; $(ERR)
endif