From 7372365961376ded38fa585202d5250e4c74d185 Mon Sep 17 00:00:00 2001 From: hanez Date: Mon, 27 Apr 2026 09:12:18 +0200 Subject: [PATCH] Removed sudo from ./make install as a dependency. (0.41.5) You should run this command when you are root by su or something similiar. --- make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make b/make index 3c49fac..8fac7ba 100755 --- a/make +++ b/make @@ -96,7 +96,7 @@ elif [ "$target" = "freebsd" ]; then -DFUN_WITH_REPL=ON \ && cmake --build build --target fun elif [ "$target" = "install" ]; then - sudo cmake --build build --target install + cmake --build build --target install elif [ "$target" = "minimal" ]; then rm -rf build \ && cmake -S . -B build \