# HG changeset patch # User map01bf # Date 1252944362 0 # Node ID 5240e74a0607c68379aa7ca6280db44c5aed6bd1 # Parent 881378d8309dd5a521a38c33594907d796d30d90 added an escape around ldconfig for darwin systems (macosx) in the install as ldconfig doesn't exist on these systems and as near as I can tell it's functionality isn't necessary when building dylibs, at least as used here. diff -r 881378d8309d -r 5240e74a0607 Makefile --- a/Makefile Fri Sep 04 13:47:13 2009 +0000 +++ b/Makefile Mon Sep 14 16:06:02 2009 +0000 @@ -107,7 +107,9 @@ install: $(EXECUTABLE).pc mkdir -m755 -p $(LIBDIR)/pkgconfig $(BINDIR) $(INCLUDEDIR) $(MANDIR)/man1 install -m644 $(LIBRARY) $(LIBDIR) +ifneq ($(shell uname),Darwin) ldconfig -n $(LIBDIR) +endif ln -s $(LIBRARY) $(LIBDIR)/lib$(EXECUTABLE).so install -m755 $(EXECUTABLE) $(BINDIR) install -m644 audioDB_API.h $(INCLUDEDIR)