From f06addfe0613fb072814056d6f1b411031d59e60 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Tue, 3 Mar 2020 18:13:25 -0600 Subject: [PATCH] For #240, address case when LDCONFIG is empty --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 52927abb..9b38f6ce 100644 --- a/Makefile +++ b/Makefile @@ -47,13 +47,13 @@ LDCONFIG:=ldconfig "$(LIBDIR)" UNAME:=$(shell uname -s) ifeq ($(UNAME), Darwin) CLIBS:=$(CLIBS) -ldl - LDCONFIG:= + LDCONFIG:=true else ifeq ($(UNAME), Linux) CLIBS:=$(CLIBS) -lrt -ldl endif # For other unix likes, add flags here! ifeq ($(UNAME), Haiku) - LDCONFIG:= + LDCONFIG:=true LDFLAGS=-Wl,--export-dynamic endif