File: makefile-install_el_files_to_correct_dir.patch

package info (click to toggle)
commit-patch 2.4-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 176 kB
  • sloc: perl: 412; lisp: 158; makefile: 68; sh: 32
file content (17 lines) | stat: -rw-r--r-- 661 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Fix elisp install location
Author: David Caldwell <david@porkrind.org>

--- commit-patch-2.3.orig/Makefile
+++ commit-patch-2.3/Makefile
@@ -32,9 +32,9 @@ PREFIX=/usr/local
 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"