diff options
author | Jim Blandy <jimb@redhat.com> | 1993-05-28 07:38:26 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-05-28 07:38:26 +0000 |
commit | 1c970c665482deaa9ee305609cf8a054ef3191c2 (patch) | |
tree | c8d3bf7185fca600dd5398b99a69641385bc9302 | |
parent | 5742046d8ebad81a4d73f0f77ff0407b2e71e383 (diff) | |
download | emacs-1c970c665482deaa9ee305609cf8a054ef3191c2.tar.gz |
* make-dist: Make a `site-lisp' directory in the distribution,
instead of a `local-lisp' directory, which hasn't been the
appropriate name for a long time.
* Makefile.in (@rip_paths@locallisppath): Use site-lisp directory
from the distribution first, then /usr/local/lib/emacs/site-lisp.
-rw-r--r-- | Makefile.in | 2 | ||||
-rwxr-xr-x | make-dist | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 65f4ccc6e62..eec88c6ebc3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -166,7 +166,7 @@ buildlisppath=${srcdir}/lisp @rip_paths@lispdir=${srcdir}/lisp @rip_paths@externallispdir=${srcdir}/externallisp -@rip_paths@locallisppath=${datadir}/emacs/site-lisp +@rip_paths@locallisppath=${srcdir}/site-lisp:${datadir}/emacs/site-lisp @rip_paths@etcdir=${srcdir}/etc @rip_paths@lockdir=${srcdir}/lock @rip_paths@archlibdir=${srcdir}/lib-src diff --git a/make-dist b/make-dist index 6c4117a2439..e671cc0964c 100755 --- a/make-dist +++ b/make-dist @@ -134,7 +134,7 @@ echo "Updating version number in README." echo "Creating subdirectories." # I think we're not going to distribute anything in external-lisp, so # I've removed it from this list. -for subdir in lisp lisp/term local-lisp \ +for subdir in lisp lisp/term site-lisp \ src src/m src/s src/bitmaps lib-src oldXMenu \ etc lock cpp info man shortnames vms; do mkdir ${tempdir}/${subdir} |