File: Makefile-broken-if-called-from-root.patch

package info (click to toggle)
emacspeak 53.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 33,768 kB
  • sloc: lisp: 56,393; xml: 52,463; tcl: 1,333; cpp: 1,168; sh: 859; makefile: 739; python: 547; perl: 509; javascript: 191; ansic: 82
file content (22 lines) | stat: -rw-r--r-- 738 bytes parent folder | download | duplicates (3)
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