aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1996-01-05 23:12:03 +0000
committerRoland McGrath1996-01-05 23:12:03 +0000
commitc7f493fd9f9d669713a394e6f35c35cc6eb72bf0 (patch)
treec4412c15bf10ec4fd74dd54287e9fdbeb0a444d2
parenta7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0 (diff)
downloademacs-c7f493fd9f9d669713a394e6f35c35cc6eb72bf0.tar.gz
emacs-c7f493fd9f9d669713a394e6f35c35cc6eb72bf0.zip
(locallisppath): Fix typo in last change: " -> '.
-rw-r--r--configure.in23
1 files changed, 12 insertions, 11 deletions
diff --git a/configure.in b/configure.in
index 7300ae6f848..3b2e6d2551d 100644
--- a/configure.in
+++ b/configure.in
@@ -7,7 +7,8 @@ AC_INIT(src/lisp.h)
7AC_CONFIG_HEADER(src/config.h:src/config.in) 7AC_CONFIG_HEADER(src/config.h:src/config.in)
8 8
9lispdir='${datadir}/emacs/${version}/lisp' 9lispdir='${datadir}/emacs/${version}/lisp'
10locallisppath='${datadir}/emacs/site-lisp:${datadir}/emacs/${version}/site-lisp" 10locallisppath='${datadir}/emacs/site-lisp:'\
11'${datadir}/emacs/${version}/site-lisp'
11lisppath='${locallisppath}:${lispdir}' 12lisppath='${locallisppath}:${lispdir}'
12etcdir='${datadir}/emacs/${version}/etc' 13etcdir='${datadir}/emacs/${version}/etc'
13lockdir='${sharedstatedir}/emacs/lock' 14lockdir='${sharedstatedir}/emacs/lock'
@@ -177,7 +178,7 @@ case "${canonical}" in
177 m68*-altos-sysv* ) 178 m68*-altos-sysv* )
178 machine=altos opsys=usg5-2 179 machine=altos opsys=usg5-2
179 ;; 180 ;;
180 181
181 ## Amdahl UTS 182 ## Amdahl UTS
182 580-amdahl-sysv* ) 183 580-amdahl-sysv* )
183 machine=amdahl opsys=usg5-2-2 184 machine=amdahl opsys=usg5-2-2
@@ -285,7 +286,7 @@ case "${canonical}" in
285 if test -s /etc/167config 286 if test -s /etc/167config
286 then CC="gnucc -m68040" 287 then CC="gnucc -m68040"
287 else CC="gnucc -m68881" 288 else CC="gnucc -m68881"
288 fi 289 fi
289 else 290 else
290 if test -z "`type gcc | grep 'not found'`" 291 if test -z "`type gcc | grep 'not found'`"
291 then CC=gcc 292 then CC=gcc
@@ -442,13 +443,13 @@ case "${canonical}" in
442 ;; 443 ;;
443 romp-ibm-bsd4.3* ) 444 romp-ibm-bsd4.3* )
444 machine=ibmrt opsys=bsd4-3 445 machine=ibmrt opsys=bsd4-3
445 ;; 446 ;;
446 romp-ibm-bsd4.2* ) 447 romp-ibm-bsd4.2* )
447 machine=ibmrt opsys=bsd4-2 448 machine=ibmrt opsys=bsd4-2
448 ;; 449 ;;
449 romp-ibm-aos4.3* ) 450 romp-ibm-aos4.3* )
450 machine=ibmrt opsys=bsd4-3 451 machine=ibmrt opsys=bsd4-3
451 ;; 452 ;;
452 romp-ibm-aos4.2* ) 453 romp-ibm-aos4.2* )
453 machine=ibmrt opsys=bsd4-2 454 machine=ibmrt opsys=bsd4-2
454 ;; 455 ;;
@@ -750,7 +751,7 @@ case "${canonical}" in
750 titan-titan-sysv* ) 751 titan-titan-sysv* )
751 machine=titan opsys=usg5-3 752 machine=titan opsys=usg5-3
752 ;; 753 ;;
753 754
754 ## Ustation E30 (SS5E) 755 ## Ustation E30 (SS5E)
755 m68*-unisys-uniplus* ) 756 m68*-unisys-uniplus* )
756 machine=ustation opsystem=unipl5-2 757 machine=ustation opsystem=unipl5-2
@@ -901,12 +902,12 @@ fi
901if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x 902if test x$GCC = xyes && test "x$GCC_TEST_OPTIONS" != x
902then 903then
903 CC="$CC $GCC_TEST_OPTIONS" 904 CC="$CC $GCC_TEST_OPTIONS"
904fi 905fi
905 906
906if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x 907if test x$GCC = x && test "x$NON_GCC_TEST_OPTIONS" != x
907then 908then
908 CC="$CC $NON_GCC_TEST_OPTIONS" 909 CC="$CC $NON_GCC_TEST_OPTIONS"
909fi 910fi
910 911
911#### Some other nice autoconf tests. If you add a test here which 912#### Some other nice autoconf tests. If you add a test here which
912#### should make an entry in src/config.h, don't forget to add an 913#### should make an entry in src/config.h, don't forget to add an
@@ -1017,9 +1018,9 @@ case "${window_system}" in
1017 HAVE_X_WINDOWS=yes 1018 HAVE_X_WINDOWS=yes
1018 HAVE_X11=yes 1019 HAVE_X11=yes
1019 case "${with_x_toolkit}" in 1020 case "${with_x_toolkit}" in
1020 athena | lucid ) USE_X_TOOLKIT=LUCID ;; 1021 athena | lucid ) USE_X_TOOLKIT=LUCID ;;
1021 motif ) USE_X_TOOLKIT=MOTIF ;; 1022 motif ) USE_X_TOOLKIT=MOTIF ;;
1022dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;; 1023dnl open-look ) USE_X_TOOLKIT=OPEN_LOOK ;;
1023 * ) USE_X_TOOLKIT=none ;; 1024 * ) USE_X_TOOLKIT=none ;;
1024 esac 1025 esac
1025 ;; 1026 ;;