Commit 0b35e9f6 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fixed Makefile: set LIBDIR in installed scripts

LIBDIR was being set in source scripts, not installed scripts.
parent f8b1b9e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ uninstall-bin:
install-lib: $(LIBS)
	@mkdir -p "$(LIBDIR)/$(PACKAGE)"
	$(cp) $? "$(LIBDIR)/$(PACKAGE)"
	sed -i 's|LIBDIR=.*|LIBDIR=$(LIBDIR)/$(PACKAGE)|' $(BINS)
	sed -i 's|LIBDIR=.*|LIBDIR=$(LIBDIR)/$(PACKAGE)|' $(addprefix "$(BINDIR)"/, $(BINS))

uninstall-lib:
	$(rm) -r "$(LIBDIR)/$(PACKAGE)"