Commit 02e382b8 authored by Joao Tavora's avatar Joao Tavora
Browse files

Closes #101: don't use new Emacs 24.4's colon load-path in Makefile

* Makefile (LOAD_PATH): Closes #101: Don't use new : (colon)
feature of upcoming Emacs 24.4.
parent 6aafda80
Showing with 4 additions and 10 deletions
+4 -10
2014-02-06 João Távora <joaotavora@gmail.com>
 
* Makefile (LOAD_PATH): Closes #101: Don't use new : (colon)
feature of upcoming Emacs 24.4.
* swank.asd: revert previous change by 2014-01-05 Francois-Rene
Rideau until proper swank-loader-less ASDF support can be build
it. It exhibits problems on ABCL and SBCL.
......
......@@ -7,16 +7,7 @@ CONTRIBS = $(patsubst contrib/slime-%.el,%,$(wildcard contrib/slime-*.el))
EMACS_23=$(shell $(EMACS_BIN) --version | grep -E 23)
EMACS_24=$(shell $(EMACS_BIN) --version | grep -E 24)
# emacs 24.4 allows us to add to the end of the load path using `:'
# which is what we want in these version 24, especially since
# cl-lib.el might be in the dir to shadow emacs's own.
#
ifeq ($(shell $(EMACS_BIN) --version | grep -E 24.\(3.5\|4\)),)
COLON =
else
COLON = :
endif
LOAD_PATH=-L $(COLON). -L $(COLON)./contrib
LOAD_PATH=-L . -L ./contrib
# Compilation
#
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment