From 2ef14a7744e83ca1ed29dc14781f2f43786f59d1 Mon Sep 17 00:00:00 2001 From: Alberto Planas Date: Fri, 19 Aug 2016 21:45:31 +0200 Subject: [PATCH] Makefile: Remove extra quote that breaks the build Fix https://github.com/haskell/haskell-mode/issues/1409 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2810e082e..8ee668703 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ build-$(EMACS_VERSION)/%.elc : %.el $(ELFILES) $(BATCH) --eval '(setq byte-compile-error-on-warn t)' \ --eval "(defun byte-compile-dest-file (filename) \ (concat (file-name-directory filename) \"build-\" emacs-version \"/\" \ - (file-name-nondirectory filename) \"c\"))'" \ + (file-name-nondirectory filename) \"c\"))" \ --eval "(when (check-declare-file \"$<\") (kill-emacs 2))" \ -f batch-byte-compile $< \