GNUMakefile: fix inverted check

This commit is contained in:
500-internal-server-error 2025-12-18 15:14:44 +07:00
parent 74179554bb
commit f1fc880d61
No known key found for this signature in database
GPG key ID: 1F0F6172FDA737B4

View file

@ -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