Added ldconfig invocation for OpenBSD

This commit is contained in:
Bob Polis 2023-04-15 23:29:52 +02:00
parent 0abc6ef71c
commit 7fc5a90618

View File

@ -115,3 +115,6 @@ ifeq ($(UNAME_S),Linux)
ldconfig ldconfig
cd $(LIBDIR) && ln -sf $(SONAME) $(LINKERNAME) cd $(LIBDIR) && ln -sf $(SONAME) $(LINKERNAME)
endif endif
ifeq ($(UNAME_S),OpenBSD)
ldconfig -R
endif