From cb828d84c97111c64d19e0ae050f14aa6fad8bd0 Mon Sep 17 00:00:00 2001 From: Drew Weymouth Date: Mon, 29 Jun 2026 17:32:59 -0700 Subject: [PATCH] use -tags x11 on Linux --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c181d87..cf26ca8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,11 @@ +GO_TAGS := migrated_fynedo + +ifeq ($(shell uname -s),Linux) +GO_TAGS := $(GO_TAGS),x11 +endif + build: - go build -tags migrated_fynedo + go build -tags "$(GO_TAGS)" # dylibbundler doesn't seem to pick up on the Python framework dependency, # so the last 3 cmds move it over manually. This is a bit fragile though