Mercurial > emacs
changeset 9457:a9a8a2326411
Use libexecdir and sharedstatedir as appropriate.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 11 Oct 1994 21:36:30 +0000 |
parents | 5c972afd73c4 |
children | a6d5f1c10986 |
files | Makefile.in |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile.in Tue Oct 11 21:34:29 1994 +0000 +++ b/Makefile.in Tue Oct 11 21:36:30 1994 +0000 @@ -82,12 +82,12 @@ # 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-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 @@ ### 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 @@ (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 \