aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-11 21:36:30 +0000
committerRichard M. Stallman1994-10-11 21:36:30 +0000
commit2fd54e6462469912361c08793316f6283eb13dec (patch)
treee30bee1833f2bfdc4aacbdfb76885f6674ebf262
parent7c5b02433adaee24d7169ae4a69d94a09c910227 (diff)
downloademacs-2fd54e6462469912361c08793316f6283eb13dec.tar.gz
emacs-2fd54e6462469912361c08793316f6283eb13dec.zip
Use libexecdir and sharedstatedir as appropriate.
-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@
82# runs. These files are all architecture-independent. Right now, the 82# runs. These files are all architecture-independent. Right now, the
83# only such data is the locking directory; ${lockdir} is a 83# only such data is the locking directory; ${lockdir} is a
84# subdirectory of this. 84# subdirectory of this.
85statedir=@statedir@ 85sharedstatedir=@statedir@
86 86
87# Where to install and expect executable files to be run by Emacs 87# Where to install and expect executable files to be run by Emacs
88# rather than directly by users, and other architecture-dependent 88# rather than directly by users, and other architecture-dependent
89# data. ${archlibdir} is a subdirectory of this. 89# data. ${archlibdir} is a subdirectory of this.
90libdir=@libdir@ 90libexecdir=@libexecdir@
91 91
92# Where to install Emacs's man pages, and what extension they should have. 92# Where to install Emacs's man pages, and what extension they should have.
93mandir=@mandir@ 93mandir=@mandir@
@@ -294,8 +294,8 @@ install: ${SUBDIR} install-arch-dep install-arch-indep blessmail;
294install-arch-dep: mkdir 294install-arch-dep: mkdir
295 (cd lib-src; \ 295 (cd lib-src; \
296 $(MAKE) install $(MFLAGS) prefix=${prefix} \ 296 $(MAKE) install $(MFLAGS) prefix=${prefix} \
297 exec_prefix=${exec_prefix} bindir=${bindir} libdir=${libdir} \ 297 exec_prefix=${exec_prefix} bindir=${bindir} \
298 archlibdir=${archlibdir}) 298 libexecdir=${libexecdir} archlibdir=${archlibdir})
299 ${INSTALL_PROGRAM} src/emacs ${bindir}/emacs-${version} 299 ${INSTALL_PROGRAM} src/emacs ${bindir}/emacs-${version}
300 -chmod 1755 ${bindir}/emacs-${version} 300 -chmod 1755 ${bindir}/emacs-${version}
301 rm -f ${bindir}/$(EMACS) 301 rm -f ${bindir}/$(EMACS)
@@ -355,7 +355,7 @@ install-arch-indep: mkdir
355### instead of mkdir. Not all systems' mkdirs have the `-p' flag. 355### instead of mkdir. Not all systems' mkdirs have the `-p' flag.
356mkdir: FRC 356mkdir: FRC
357 ./lib-src/make-path ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \ 357 ./lib-src/make-path ${COPYDESTS} ${lockdir} ${infodir} ${mandir} \
358 ${bindir} ${datadir} ${docdir} ${libdir} \ 358 ${bindir} ${datadir} ${docdir} ${libexecdir} \
359 `echo ${locallisppath} | sed 's/:/ /g'` 359 `echo ${locallisppath} | sed 's/:/ /g'`
360 -chmod 777 ${lockdir} 360 -chmod 777 ${lockdir}
361 361
@@ -368,7 +368,7 @@ uninstall:
368 (cd lib-src; \ 368 (cd lib-src; \
369 $(MAKE) $(MFLAGS) uninstall \ 369 $(MAKE) $(MFLAGS) uninstall \
370 prefix=${prefix} exec_prefix=${exec_prefix} \ 370 prefix=${prefix} exec_prefix=${exec_prefix} \
371 bindir=${bindir} libdir=${libdir} archlibdir=${archlibdir}) 371 bindir=${bindir} libexecdir=${libexecdir} archlibdir=${archlibdir})
372 for dir in ${lispdir} ${etcdir} ; do \ 372 for dir in ${lispdir} ${etcdir} ; do \
373 if [ -d $${dir} ]; then \ 373 if [ -d $${dir} ]; then \
374 case `(cd $${dir} ; /bin/pwd)` in \ 374 case `(cd $${dir} ; /bin/pwd)` in \