From 5f8fb9b64de919c05effc02722075d253ad93424 Mon Sep 17 00:00:00 2001 From: Ryan Egesdahl Date: Sun, 5 Jul 2026 17:01:16 -0700 Subject: [PATCH] fix: Installation fails on FreeBSD Installation fails on FreeBSD due to the fact that the version number needs to be in the RID. This commit simply adds the version number so installation will succeed. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 604cc5d7..d84138b0 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ else endif ifeq ($(UNAME_S),FreeBSD) - OS_ID := freebsd + OS_ID := freebsd.$(shell uname -r | cut -d. -f1) endif ifeq ($(TARGET),x86_64)