summaryrefslogtreecommitdiff
path: root/make-dist
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1999-06-23 05:30:39 +0000
committerKarl Heuer <kwzh@gnu.org>1999-06-23 05:30:39 +0000
commit59d05d2dd30b980638420cab29470bf032a68f1a (patch)
tree84af99150c20da73f299fde017317914411b07f4 /make-dist
parent427f5aab9d1831bbb16fa051a4210a85fdccc406 (diff)
downloademacs-59d05d2dd30b980638420cab29470bf032a68f1a.tar.gz
Unset EMACS_UNIBYTE, so Emacs runs in its default state.
Quote $EMACS, in case it's a program with args.
Diffstat (limited to 'make-dist')
-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
### that the shell is running in an Emacs window.)
if [ $update = yes ];
then
+ unset EMACS_UNIBYTE
if [ -f src/emacs ];
then
EMACS=`pwd`/src/emacs
@@ -215,11 +216,11 @@ then
echo "Updating finder, custom and autoload data"
- (cd lisp; make updates EMACS=$EMACS)
+ (cd lisp; make updates EMACS="$EMACS")
echo "Updating leim-list.el"
- (cd leim; make leim-list.el EMACS=$EMACS)
+ (cd leim; make leim-list.el EMACS="$EMACS")
echo "Recompiling Lisp files"