From b89a1ad84036d65d753ea629b227bb65acd182ff Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Sat, 15 Apr 2023 23:31:26 +0200 Subject: [PATCH] Added ldconfig invocation for OpenBSD --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f7026f1..19dc7a0 100644 --- a/Makefile +++ b/Makefile @@ -114,3 +114,6 @@ ifeq ($(UNAME_S),Linux) ldconfig cd $(LIBDIR) && ln -sf $(SONAME) $(LINKERNAME) endif +ifeq ($(UNAME_S),OpenBSD) + ldconfig -R +endif