aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-11 21:34:29 +0000
committerRichard M. Stallman1994-10-11 21:34:29 +0000
commit7c5b02433adaee24d7169ae4a69d94a09c910227 (patch)
tree4186e36b25f1b7c3a5cfb7712f3281bdafc01cc6
parent1e8259bb0b11c006acbc73f4cd2c83d4ff51ea02 (diff)
downloademacs-7c5b02433adaee24d7169ae4a69d94a09c910227.tar.gz
emacs-7c5b02433adaee24d7169ae4a69d94a09c910227.zip
(libexecdir): Renamed from libdir. New default.
(sharedstatedir): Renamed from statedir. New default. (datadir): New default.
-rwxr-xr-xconfigure1.in34
1 files changed, 17 insertions, 17 deletions
diff --git a/configure1.in b/configure1.in
index 458e33edf28..358e9457c16 100755
--- a/configure1.in
+++ b/configure1.in
@@ -65,17 +65,17 @@ single_tree=
65prefix='/usr/local' 65prefix='/usr/local'
66exec_prefix='${prefix}' 66exec_prefix='${prefix}'
67bindir='${exec_prefix}/bin' 67bindir='${exec_prefix}/bin'
68datadir='${prefix}/lib' 68datadir='${prefix}/share'
69statedir='${prefix}/lib' 69sharedstatedir='${prefix}/com'
70libdir='${exec_prefix}/lib' 70libexecdir='${exec_prefix}/libexec'
71mandir='${prefix}/man/man1' 71mandir='${prefix}/man/man1'
72infodir='${prefix}/info' 72infodir='${prefix}/info'
73lispdir='${datadir}/emacs/${version}/lisp' 73lispdir='${datadir}/emacs/${version}/lisp'
74locallisppath='${datadir}/emacs/site-lisp' 74locallisppath='${datadir}/emacs/site-lisp'
75lisppath='${locallisppath}:${lispdir}' 75lisppath='${locallisppath}:${lispdir}'
76etcdir='${datadir}/emacs/${version}/etc' 76etcdir='${datadir}/emacs/${version}/etc'
77lockdir='${statedir}/emacs/lock' 77lockdir='${sharedstatedir}/emacs/lock'
78archlibdir='${libdir}/emacs/${version}/${configuration}' 78archlibdir='${libexecdir}/emacs/${version}/${configuration}'
79docdir='${datadir}/emacs/${version}/etc' 79docdir='${datadir}/emacs/${version}/etc'
80 80
81# On Sun systems, people sometimes set up the variable CPP 81# On Sun systems, people sometimes set up the variable CPP
@@ -89,8 +89,8 @@ fi
89# We cannot use this variable in the case statement below, because many 89# We cannot use this variable in the case statement below, because many
90# /bin/sh's have broken semantics for "case". Unfortunately, you must 90# /bin/sh's have broken semantics for "case". Unfortunately, you must
91# actually edit the clause itself. 91# actually edit the clause itself.
92# path_options="prefix | exec_prefix | bindir | libdir | etcdir | datadir" 92# path_options="prefix | exec_prefix | bindir | libexecdir | etcdir | datadir"
93# path_options="$path_options | archlibdir | statedir | mandir | infodir" 93# path_options="$path_options | archlibdir | sharedstatedir | mandir | infodir"
94# path_options="$path_options | lispdir | lockdir | lisppath | locallisppath" 94# path_options="$path_options | lispdir | lockdir | lisppath | locallisppath"
95 95
96#### Usage messages. 96#### Usage messages.
@@ -124,7 +124,7 @@ CONFIGURATION specifies the machine and operating system to build for.
124--prefix=DIR Install files below DIR. Defaults to \`${prefix}'. 124--prefix=DIR Install files below DIR. Defaults to \`${prefix}'.
125 125
126You may also specify any of the \`path' variables found in Makefile.in, 126You may also specify any of the \`path' variables found in Makefile.in,
127including --bindir, --libdir, --etcdir, --infodir, and so on. This allows 127including --bindir, --libexecdir, --etcdir, --infodir, and so on. This allows
128you to override a single default location when configuring. 128you to override a single default location when configuring.
129 129
130If successful, ${progname} leaves its status in config.status. If 130If successful, ${progname} leaves its status in config.status. If
@@ -300,8 +300,8 @@ Set it to either \`yes' or \`no'."
300 ;; 300 ;;
301 301
302 ## Has the user specified one of the path options? 302 ## Has the user specified one of the path options?
303 prefix | exec_prefix | bindir | libdir | etcdir | datadir | \ 303 prefix | exec_prefix | bindir | libexecdir | etcdir | datadir | \
304 archlibdir | statedir | mandir | infodir | lispdir | lockdir | \ 304 archlibdir | sharedstatedir | mandir | infodir | lispdir | lockdir | \
305 lisppath | locallisppath | docdir ) 305 lisppath | locallisppath | docdir )
306 ## If the value was omitted, get it from the next argument. 306 ## If the value was omitted, get it from the next argument.
307 if [ "${valomitted}" = "yes" ]; then 307 if [ "${valomitted}" = "yes" ]; then
@@ -1619,8 +1619,8 @@ AC_SUBST(prefix)
1619AC_SUBST(exec_prefix) 1619AC_SUBST(exec_prefix)
1620AC_SUBST(bindir) 1620AC_SUBST(bindir)
1621AC_SUBST(datadir) 1621AC_SUBST(datadir)
1622AC_SUBST(statedir) 1622AC_SUBST(sharedstatedir)
1623AC_SUBST(libdir) 1623AC_SUBST(libexecdir)
1624AC_SUBST(mandir) 1624AC_SUBST(mandir)
1625AC_SUBST(infodir) 1625AC_SUBST(infodir)
1626AC_SUBST(lispdir) 1626AC_SUBST(lispdir)
@@ -1703,11 +1703,11 @@ elif [ "$single_tree" = "1" ]; then
1703 if [ "$datadir_specified" = "" ]; then 1703 if [ "$datadir_specified" = "" ]; then
1704 datadir='${prefix}/common' 1704 datadir='${prefix}/common'
1705 fi 1705 fi
1706 if [ "$statedir_specified" = "" ]; then 1706 if [ "$sharedstatedir_specified" = "" ]; then
1707 statedir='${prefix}/common' 1707 sharedstatedir='${prefix}/common'
1708 fi 1708 fi
1709 if [ "$libdir_specified" = "" ]; then 1709 if [ "$libexecdir_specified" = "" ]; then
1710 libdir='${bindir}' 1710 libexecdir='${bindir}'
1711 fi 1711 fi
1712 if [ "$lispdir_specified" = "" ]; then 1712 if [ "$lispdir_specified" = "" ]; then
1713 lispdir='${prefix}/common/lisp' 1713 lispdir='${prefix}/common/lisp'
@@ -1719,7 +1719,7 @@ elif [ "$single_tree" = "1" ]; then
1719 lockdir='${prefix}/common/lock' 1719 lockdir='${prefix}/common/lock'
1720 fi 1720 fi
1721 if [ "$archlibdir_specified" = "" ]; then 1721 if [ "$archlibdir_specified" = "" ]; then
1722 archlibdir='${libdir}/etc' 1722 archlibdir='${libexecdir}/etc'
1723 fi 1723 fi
1724 if [ "$etcdir_specified" = "" ]; then 1724 if [ "$etcdir_specified" = "" ]; then
1725 etcdir='${prefix}/common/data' 1725 etcdir='${prefix}/common/data'