aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-21 11:38:27 +0100
committerGravatar Carl Worth <cworth@cworth.org>2009-11-21 11:40:37 +0100
commit21f32524366e219f425a5e74ebebb4151dc4918f (patch)
treea4162984b386724f3905f44f6a82fd9639b6fdea /Makefile
parent49132ebc765f355b97671ef253c13d7af9f037a2 (diff)
Makefile: Fix the fallback emacs install path.
When pkg-config can't be used to find out where to install emacs files, we fallback to a hard-coded directory. Only, we were falling back to the wrong thing, (one that emacs doesn't look into by default).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f9f7af03..3fedcf12 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ extra_cxxflags := $(shell xapian-config --cxxflags)
emacs_lispdir := $(shell pkg-config emacs --variable sitepkglispdir)
# Hard-code if this system doesn't have an emacs.pc file
ifeq ($(emacs_lispdir),)
- emacs_lispdir = $(prefix)/share/site-lisp
+ emacs_lispdir = $(prefix)/share/emacs/site-lisp
endif
all_deps = Makefile Makefile.local Makefile.config \