File: makefile-install_el_files_to_correct_dir.patch

package info (click to toggle)
commit-patch 2.6-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 228 kB
  • sloc: perl: 222; sh: 178; lisp: 138; makefile: 47
file content (19 lines) | stat: -rw-r--r-- 804 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Fix elisp install location
Author: David Caldwell <david@porkrind.org>

Index: commit-patch/Makefile
===================================================================
--- commit-patch.orig/Makefile	2019-02-13 23:14:06.678581982 -0800
+++ commit-patch/Makefile	2019-02-13 23:14:06.646581248 -0800
@@ -42,9 +42,9 @@
 install: $(ALL)
 	mkdir -p "$(PREFIX)/bin"
 	mkdir -p "$(PREFIX)/share/man/man1"
-	mkdir -p "$(PREFIX)/share/emacs/site-lisp"
+	mkdir -p "$(PREFIX)/share/emacs/site-lisp/commit-patch"
 	mkdir -p "$(PREFIX)/share/doc/commit-patch"
 	cp -a $(BIN)   "$(PREFIX)/bin"
 	cp -a $(MAN)   "$(PREFIX)/share/man/man1"
-	cp -a $(ELISP) "$(PREFIX)/share/emacs/site-lisp"
+	cp -a $(ELISP) "$(PREFIX)/share/emacs/site-lisp/commit-patch"
 	cp -a $(DOC)   "$(PREFIX)/share/doc/commit-patch"