From ac5879e725bfb8deeedbb9b7f09cd872a636d938 Mon Sep 17 00:00:00 2001 From: NishiOwO <89888985+NishiOwO@users.noreply.github.com> Date: Wed, 20 Apr 2022 13:09:36 +0900 Subject: [PATCH] Fixing Pull request #243 (#245) * NetBSD / OpenBSD Support * OpenBSD seq alias settings * Fixing Pull request #243 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0bfeee52..12d81b4f 100644 --- a/Makefile +++ b/Makefile @@ -31,8 +31,8 @@ endif ifneq (${BUILD_ON_WINDOWS}, 1) LDFLAGS += -lpthread -ifeq ($(uname -s), NetBSD) -else ifeq ($(uname -s), OpenBSD) +ifeq ($(shell uname -s), NetBSD) +else ifeq ($(shell uname -s), OpenBSD) else LDFLAGS += -ldl endif -- 2.43.0