From d0984877bc6b252bfded0d48d52b06fbdf93fab6 Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Sun, 7 Jun 2015 18:32:03 +0200 Subject: Makefile: don't add cl-lib to load-path We no longer support Emacsen which don't have that library built-in. --- Makefile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index a36a1f9..ce9e372 100644 --- a/Makefile +++ b/Makefile @@ -9,13 +9,6 @@ statsdir ?= ./stats ELPA_DIR ?= $(HOME)/.emacs.d/elpa -CL_LIB_DIR ?= $(shell \ - find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/cl-lib-[.0-9]*' 2> /dev/null | \ - sort | tail -n 1) -ifeq "$(CL_LIB_DIR)" "" - CL_LIB_DIR = ../cl-lib -endif - DASH_DIR ?= $(shell \ find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/dash-[.0-9]*' 2> /dev/null | \ sort | tail -n 1) @@ -26,9 +19,9 @@ endif CYGPATH := $(shell cygpath --version 2>/dev/null) ifdef CYGPATH - LOAD_PATH ?= -L . -L $(shell cygpath --mixed $(CL_LIB_DIR)) -L $(shell cygpath --mixed $(DASH_DIR)) + LOAD_PATH ?= -L . -L $(shell cygpath --mixed $(DASH_DIR)) else - LOAD_PATH ?= -L . -L $(CL_LIB_DIR) -L $(DASH_DIR) + LOAD_PATH ?= -L . -L $(DASH_DIR) endif EMACSBIN ?= emacs -- cgit v1.0