comparison make-dist @ 24878:3171bf7ae0ff

Unset EMACS_UNIBYTE, so Emacs runs in its default state. Quote $EMACS, in case it's a program with args.
author Karl Heuer <kwzh@gnu.org>
date Wed, 23 Jun 1999 05:30:39 +0000
parents 58e77af0527b
children 8a1730e677fe
comparison
equal deleted inserted replaced
24877:f0aa6266cd12 24878:3171bf7ae0ff
93 ### Find where to run Emacs. 93 ### Find where to run Emacs.
94 ### (We don't accept EMACS=t as an answer, since that probably only means 94 ### (We don't accept EMACS=t as an answer, since that probably only means
95 ### that the shell is running in an Emacs window.) 95 ### that the shell is running in an Emacs window.)
96 if [ $update = yes ]; 96 if [ $update = yes ];
97 then 97 then
98 unset EMACS_UNIBYTE
98 if [ -f src/emacs ]; 99 if [ -f src/emacs ];
99 then 100 then
100 EMACS=`pwd`/src/emacs 101 EMACS=`pwd`/src/emacs
101 else 102 else
102 if [ "x$EMACS" = "x" -o "x$EMACS" = "xt" ]; 103 if [ "x$EMACS" = "x" -o "x$EMACS" = "xt" ];
213 214
214 (cd man; make -f Makefile.in srcdir=. info) 215 (cd man; make -f Makefile.in srcdir=. info)
215 216
216 echo "Updating finder, custom and autoload data" 217 echo "Updating finder, custom and autoload data"
217 218
218 (cd lisp; make updates EMACS=$EMACS) 219 (cd lisp; make updates EMACS="$EMACS")
219 220
220 echo "Updating leim-list.el" 221 echo "Updating leim-list.el"
221 222
222 (cd leim; make leim-list.el EMACS=$EMACS) 223 (cd leim; make leim-list.el EMACS="$EMACS")
223 224
224 echo "Recompiling Lisp files" 225 echo "Recompiling Lisp files"
225 226
226 $EMACS -batch -f batch-byte-recompile-directory lisp leim 227 $EMACS -batch -f batch-byte-recompile-directory lisp leim
227 fi 228 fi