From 52403dbe4a7138c6d7b11fdba47f39170fb32658 Mon Sep 17 00:00:00 2001 From: Christopher Allen Lane Date: Sun, 15 Feb 2026 15:19:06 -0500 Subject: [PATCH] fix: drop plan9 build target (#774) The plan9/amd64 build fails because the vendored cyphar/filepath-securejoin uses syscall.ELOOP, which doesn't exist on plan9. Upstream fix (cyphar/filepath-securejoin#51) is stalled. Given ~0 user demand (46 downloads total, one release), remove the target rather than carry a local patch. Closes #774 Co-Authored-By: Claude Opus 4.6 --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index 0b64cbe..ea923dc 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,6 @@ releases := \ $(dist_dir)/cheat-linux-arm7 \ $(dist_dir)/cheat-netbsd-amd64 \ $(dist_dir)/cheat-openbsd-amd64 \ - $(dist_dir)/cheat-plan9-amd64 \ $(dist_dir)/cheat-solaris-amd64 \ $(dist_dir)/cheat-windows-amd64.exe @@ -110,11 +109,6 @@ $(dist_dir)/cheat-openbsd-amd64: GOARCH=amd64 GOOS=openbsd \ $(GO) build $(BUILD_FLAGS) -o $@ $(cmd_dir) && $(GZIP) $@ && chmod -x $@.gz -# cheat-plan9-amd64 -$(dist_dir)/cheat-plan9-amd64: - GOARCH=amd64 GOOS=plan9 \ - $(GO) build $(BUILD_FLAGS) -o $@ $(cmd_dir) && $(GZIP) $@ && chmod -x $@.gz - # cheat-solaris-amd64 $(dist_dir)/cheat-solaris-amd64: GOARCH=amd64 GOOS=solaris \