From 7fc5a90618cbcd47d148a453779e59600f120fbe Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Sat, 15 Apr 2023 23:29:52 +0200 Subject: [PATCH] Added ldconfig invocation for OpenBSD --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 03415ad..77d684d 100644 --- a/Makefile +++ b/Makefile @@ -115,3 +115,6 @@ ifeq ($(UNAME_S),Linux) ldconfig cd $(LIBDIR) && ln -sf $(SONAME) $(LINKERNAME) endif +ifeq ($(UNAME_S),OpenBSD) + ldconfig -R +endif