summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-10-11 21:36:30 +0000
committerRichard M. Stallman <rms@gnu.org>1994-10-11 21:36:30 +0000
commitbd1a6241b54e0af62dd791693863ef357235bc1f (patch)
tree2f077ec46b526ce655c11221485e005a1b0cf8cd /Makefile.in
parent1e0f2a59998fb66effd009a37079f4fd5fbfc8ef (diff)
downloademacs-bd1a6241b54e0af62dd791693863ef357235bc1f.tar.gz
Use libexecdir and sharedstatedir as appropriate.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in
index 1832fddd4f7..15f3e529f39 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -82,12 +82,12 @@ datadir=@datadir@
# runs. These files are all architecture-independent. Right now, the
# only such data is the locking directory; ${lockdir} is a
# subdirectory of this.
-statedir=@statedir@
+sharedstatedir=@statedir@
# Where to install and expect executable files to be run by Emacs
# rather than directly by users, and other architecture-dependent
# data. ${archlibdir} is a subdirectory of this.
-libdir=@libdir@
+libexecdir=@libexecdir@
# Where to install Emacs's man pages, and what extension they should have.
mandir=@mandir@
@@ -294,8 +294,8 @@ install: ${SUBDIR} install-arch-dep install-arch-indep blessmail;
install-arch-dep: mkdir
(cd lib-src; \
$(MAKE) install $(MFLAGS) prefix=${prefix} \
- exec_prefix=${exec_prefix} bindir=${bindir} libdir=${libdir} \
- archlibdir=${archlibdir})
+ exec_prefix=${exec_prefix} bindir=${bindir} \
+ libexecdir=${libexecdir} archlibdir=${archlibdir})
${INSTALL_PROGRAM} src/emacs ${bindir}/emacs-${version}
-chmod 1755 ${bindir}/emacs-${version}
rm -f ${bindir}/$(EMACS)
@@ -355,7 +355,7 @@ install-arch-indep: mkdir
### instead of mkdir. Not all systems' mkdirs have the `-p' flag.
mkdir: FRC
./lib-src/make-path ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \
- ${bindir} ${datadir} ${docdir} ${libdir} \
+ ${bindir} ${datadir} ${docdir} ${libexecdir} \
`echo ${locallisppath} | sed 's/:/ /g'`
-chmod 777 ${lockdir}
@@ -368,7 +368,7 @@ uninstall:
(cd lib-src; \
$(MAKE) $(MFLAGS) uninstall \
prefix=${prefix} exec_prefix=${exec_prefix} \
- bindir=${bindir} libdir=${libdir} archlibdir=${archlibdir})
+ bindir=${bindir} libexecdir=${libexecdir} archlibdir=${archlibdir})
for dir in ${lispdir} ${etcdir} ; do \
if [ -d $${dir} ]; then \
case `(cd $${dir} ; /bin/pwd)` in \