From 21f32524366e219f425a5e74ebebb4151dc4918f Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 21 Nov 2009 11:38:27 +0100 Subject: [PATCH] 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). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \ -- 2.43.0