diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2015-06-07 18:32:03 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2015-06-07 18:32:03 +0200 |
| commit | d0984877bc6b252bfded0d48d52b06fbdf93fab6 (patch) | |
| tree | 1c04b5128afd369ebd50c51f7f151d5ebbd28973 | |
| parent | 274f2225566520ca4c852c6c909aa02f165cbf09 (diff) | |
Makefile: don't add cl-lib to load-path
We no longer support Emacsen which don't have that library built-in.
| -rw-r--r-- | Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -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 |
