From 9258bcc360867a5fa4e9793f687c7e36b0e02644 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 15 Apr 2024 08:57:17 -0700 Subject: [PATCH] Makefile: fix default SYNO_ARCH in Makefile It was broken with the move to dist in 32e0ba5e68 which doesn't accept amd64 anymore. Updates #cleanup Change-Id: Iaaaba2d73c6a09a226934fe8e5c18b16731ee7a6 Signed-off-by: Brad Fitzpatrick --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1f9427ceb..8f8bbe2b4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ IMAGE_REPO ?= tailscale/tailscale -SYNO_ARCH ?= "amd64" +SYNO_ARCH ?= "x86_64" SYNO_DSM ?= "7" TAGS ?= "latest"