aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2015-06-07 18:32:03 +0200
committerJonas Bernoulli <jonas@bernoul.li>2015-06-07 18:32:03 +0200
commitd0984877bc6b252bfded0d48d52b06fbdf93fab6 (patch)
tree1c04b5128afd369ebd50c51f7f151d5ebbd28973 /Makefile
parent274f2225566520ca4c852c6c909aa02f165cbf09 (diff)
Makefile: don't add cl-lib to load-path
We no longer support Emacsen which don't have that library built-in.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files 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