1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: SRC is already set by the root Makefile so DEPS is wrong
Author: Paul Gevers <elbrus@debian.org>
Index: emacspeak/lisp/Makefile
===================================================================
--- emacspeak.orig/lisp/Makefile
+++ emacspeak/lisp/Makefile
@@ -41,13 +41,13 @@
.POSIX:
# what emacs is called on your system
EMACS = emacs
-SRC="../lisp"
+SRC="../"
# How to run in batch mode
BATCH = -batch -q -no-site-file \
-f package-initialize \
--eval '(setq file-name-handler-alist nil gc-cons-threshold 64000000 \
load-source-file-function nil)'
-DEPS=-l $(SRC)/emacspeak-load-path.el -l $(SRC)/emacspeak-loaddefs.el
+DEPS=-l $(SRC)/lisp/emacspeak-load-path.el -l $(SRC)/lisp/emacspeak-loaddefs.el
|