aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-05-28 07:38:26 +0000
committerJim Blandy1993-05-28 07:38:26 +0000
commit97c701137d8f88ce4bd0af1b3cde48ed3c47ec9f (patch)
tree1d27426c741e2f3c8ab36b538a22b51d539adda2
parent65607c1f5252ab07633ce84030d27de3dff5de7e (diff)
downloademacs-97c701137d8f88ce4bd0af1b3cde48ed3c47ec9f.tar.gz
emacs-97c701137d8f88ce4bd0af1b3cde48ed3c47ec9f.zip
* 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.in2
-rwxr-xr-xmake-dist2
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
166 166
167@rip_paths@lispdir=${srcdir}/lisp 167@rip_paths@lispdir=${srcdir}/lisp
168@rip_paths@externallispdir=${srcdir}/externallisp 168@rip_paths@externallispdir=${srcdir}/externallisp
169@rip_paths@locallisppath=${datadir}/emacs/site-lisp 169@rip_paths@locallisppath=${srcdir}/site-lisp:${datadir}/emacs/site-lisp
170@rip_paths@etcdir=${srcdir}/etc 170@rip_paths@etcdir=${srcdir}/etc
171@rip_paths@lockdir=${srcdir}/lock 171@rip_paths@lockdir=${srcdir}/lock
172@rip_paths@archlibdir=${srcdir}/lib-src 172@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."
134echo "Creating subdirectories." 134echo "Creating subdirectories."
135# I think we're not going to distribute anything in external-lisp, so 135# I think we're not going to distribute anything in external-lisp, so
136# I've removed it from this list. 136# I've removed it from this list.
137for subdir in lisp lisp/term local-lisp \ 137for subdir in lisp lisp/term site-lisp \
138 src src/m src/s src/bitmaps lib-src oldXMenu \ 138 src src/m src/s src/bitmaps lib-src oldXMenu \
139 etc lock cpp info man shortnames vms; do 139 etc lock cpp info man shortnames vms; do
140 mkdir ${tempdir}/${subdir} 140 mkdir ${tempdir}/${subdir}