From 738bce668f699c2a3e6c41d35857260743c70d0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Veres-Szentkir=C3=A1lyi?= Date: Tue, 14 Oct 2025 13:10:45 +0200 Subject: [PATCH] fixed yet another hardcoded uname invocation --- src/noise_xk/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/noise_xk/makefile b/src/noise_xk/makefile index 84c023b..d000a32 100644 --- a/src/noise_xk/makefile +++ b/src/noise_xk/makefile @@ -22,7 +22,7 @@ ifeq ($(UNAME),Darwin) SOEXT=dylib SOFLAGS=-Wl,-install_name,$(DESTDIR)$(PREFIX)/lib/liboprf-noiseXK.$(SOEXT) else - ifeq ($(shell uname),Linux) + ifeq ($(UNAME),Linux) CFLAGS += -Wl,--error-unresolved-symbols -Wl,-z,defs -Wl,-z,relro -Wl,-z,noexecstack SOEXT=so SOFLAGS=-Wl,-soname,liboprf-noiseXK.$(SOEXT).$(SOVER)