From f1fc880d61628b7c505edfb5dc2f90a75301093c Mon Sep 17 00:00:00 2001 From: 500-internal-server-error <76838083+500-internal-server-error@users.noreply.github.com> Date: Thu, 18 Dec 2025 15:14:44 +0700 Subject: [PATCH] GNUMakefile: fix inverted check --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index e720f633c..ecb814392 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -70,7 +70,7 @@ OS := $(shell uname -s) # Windows does not allow symlink by default. # Allow to override LN for AppArmor. -ifeq (,$(findstring _NT,$(OS))) +ifneq (,$(findstring _NT,$(OS))) LN ?= ln -f endif LN ?= ln -sf