aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-06-23 05:30:39 +0000
committerKarl Heuer1999-06-23 05:30:39 +0000
commit59d05d2dd30b980638420cab29470bf032a68f1a (patch)
tree84af99150c20da73f299fde017317914411b07f4
parent427f5aab9d1831bbb16fa051a4210a85fdccc406 (diff)
downloademacs-59d05d2dd30b980638420cab29470bf032a68f1a.tar.gz
emacs-59d05d2dd30b980638420cab29470bf032a68f1a.zip
Unset EMACS_UNIBYTE, so Emacs runs in its default state.
Quote $EMACS, in case it's a program with args.
-rwxr-xr-xmake-dist5
1 files changed, 3 insertions, 2 deletions
diff --git a/make-dist b/make-dist
index 645046d3c33..3c57500e300 100755
--- a/make-dist
+++ b/make-dist
@@ -95,6 +95,7 @@ fi
95### that the shell is running in an Emacs window.) 95### that the shell is running in an Emacs window.)
96if [ $update = yes ]; 96if [ $update = yes ];
97then 97then
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
@@ -215,11 +216,11 @@ then
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