From 889b5a39941aa408e3c8636a505cc56ba30d7568 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Thu, 19 Sep 2019 13:25:54 -0700 Subject: [PATCH] Do not call ldconfig on OpenBSD OpenBSD ldconfig does not have the -n flag, so there's no point in calling ldconfig; the manual symlinks should be good enough. Solves LuaJIT/LuaJIT#515 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index f4b8408160..024e35c9b6 100644 --- a/Makefile +++ b/Makefile @@ -104,6 +104,10 @@ ifeq (Darwin,$(TARGET_SYS)) LDCONFIG= : endif +ifeq (OpenBSD,$(TARGET_SYS)) + LDCONFIG= : +endif + ############################################################################## LUAJIT_BIN= src/luajit