From 34ba7460de49808e2a202231a0f034f657a120f9 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 923bf72b13..996182f885 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