From 2f5dc10399e5c808100081fed2ffdf19726eaa10 Mon Sep 17 00:00:00 2001 From: Brenton Bostick Date: Mon, 5 Dec 2022 15:33:00 -0600 Subject: [PATCH] Fix syntax error (#1806) Similar previous fix: https://github.com/zerotier/ZeroTierOne/commit/668ab8b85c169648141d961566f183cf71ae6fa6 --- make-bsd.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make-bsd.mk b/make-bsd.mk index 889e0e093..8234f2fdb 100644 --- a/make-bsd.mk +++ b/make-bsd.mk @@ -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