diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-04-05 09:20:15 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-04-05 09:20:15 -0400 |
commit | 2770604dee7579f285f1818d7d4489a8de40b17d (patch) | |
tree | 9e75e11469fb3257d9bf957334392a582987c26c | |
parent | Don't record Debian/Launchpad bug addresses in BBDB (diff) |
Install BBDB to ~/.emacs.d/bbdb now
-rw-r--r-- | .emacs | 2 | ||||
-rw-r--r-- | emacsen/Makefile | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,13 +1,13 @@ (add-to-list 'load-path "~/.emacs.d") (add-to-list 'load-path "~/.emacs.d/auto-indent-mode") (add-to-list 'load-path "~/.emacs.d/auto-complete") +(add-to-list 'load-path "~/.emacs.d/bbdb") (add-to-list 'load-path "~/.emacs.d/dictem") (add-to-list 'load-path "~/.emacs.d/haskell-mode") (add-to-list 'load-path "~/.emacs.d/popup") (add-to-list 'load-path "~/.emacs.d/magit") (add-to-list 'load-path "~/.emacs.d/markdown-mode") (add-to-list 'load-path "~/.emacs.d/proofgeneral/") -(add-to-list 'load-path "~/.emacs.d/share/emacs/site-lisp/bbdb") (add-to-list 'load-path "~/.emacs.d/share/emacs/site-lisp/vm") (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/") diff --git a/emacsen/Makefile b/emacsen/Makefile index be8a50f..ae57ff4 100644 --- a/emacsen/Makefile +++ b/emacsen/Makefile @@ -54,7 +54,9 @@ make-auto-complete: touch $@ make-bbdb: make-vm - cd $(@:make-%=%) && autoconf && ./configure --prefix=$(EMACSD) --without-tex-dir --with-vm-dir=$(EMACSEN)/vm/lisp + cd $(@:make-%=%) && autoconf && ./configure --prefix=$(EMACSD) --without-tex-dir \ + --with-vm-dir=$(EMACSEN)/vm/lisp \ + --with-lispdir=$(EMACSD)bbdb $(MAKE) -C $(@:make-%=%) touch $@ |