Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Do not call ldconfig on OpenBSD
Browse files Browse the repository at this point in the history
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#515
  • Loading branch information
siddhesh committed Sep 19, 2019
1 parent c7e0e64 commit 889b5a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ ifeq (Darwin,$(TARGET_SYS))
LDCONFIG= :
endif

ifeq (OpenBSD,$(TARGET_SYS))
LDCONFIG= :
endif

##############################################################################

LUAJIT_BIN= src/luajit
Expand Down

0 comments on commit 889b5a3

Please sign in to comment.