1
0
mirror of https://github.com/janet-lang/janet synced 2025-01-12 08:30:26 +00:00

Remove macos update_dyld_shared_cache

This just doesn't work well for a non global install.
It is better packages that need this to run it themselves.
This commit is contained in:
Calvin Rose 2019-09-20 13:13:05 -05:00
parent 8e427317cd
commit 1b283c47b4

View File

@ -42,13 +42,13 @@ CFLAGS=-std=c99 -Wall -Wextra -Isrc/include -Isrc/conf -fpic -O2 -fvisibility=hi
LDFLAGS=-rdynamic LDFLAGS=-rdynamic
# For installation # For installation
LDCONFIG:=ldconfig LDCONFIG:=ldconfig "$(LIBDIR)"
# Check OS # Check OS
UNAME:=$(shell uname -s) UNAME:=$(shell uname -s)
ifeq ($(UNAME), Darwin) ifeq ($(UNAME), Darwin)
CLIBS:=$(CLIBS) -ldl CLIBS:=$(CLIBS) -ldl
LDCONFIG:=update_dyld_shared_cache LDCONFIG:=
else ifeq ($(UNAME), Linux) else ifeq ($(UNAME), Linux)
CLIBS:=$(CLIBS) -lrt -ldl CLIBS:=$(CLIBS) -lrt -ldl
endif endif
@ -311,7 +311,7 @@ install: $(JANET_TARGET) build/janet.pc
cp jpm.1 '$(MANPATH)' cp jpm.1 '$(MANPATH)'
mkdir -p '$(PKG_CONFIG_PATH)' mkdir -p '$(PKG_CONFIG_PATH)'
cp build/janet.pc '$(PKG_CONFIG_PATH)/janet.pc' cp build/janet.pc '$(PKG_CONFIG_PATH)/janet.pc'
-$(LDCONFIG) $(LIBDIR) -$(LDCONFIG)
uninstall: uninstall:
-rm '$(BINDIR)/janet' -rm '$(BINDIR)/janet'