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).
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 \