diff make-dist @ 21467:8ff5c2a5ee26

Don't accept EMACS=t when testing for $EMACS set.
author Karl Heuer <kwzh@gnu.org>
date Fri, 10 Apr 1998 09:46:15 +0000
parents 9293d783c708
children d929ae6f35d3
line wrap: on
line diff
--- a/make-dist	Fri Apr 10 09:28:12 1998 +0000
+++ b/make-dist	Fri Apr 10 09:46:15 1998 +0000
@@ -91,13 +91,15 @@
 fi
 
 ### Find where to run Emacs.
+### (We don't accept EMACS=t as an answer, since that probably only means
+### that the shell is running in an Emacs window.)
 if [ $update = yes ];
 then
   if [ -f src/emacs ];
   then
     EMACS=`pwd`/src/emacs
   else
-    if [ x$EMACS = x ];
+    if [ "x$EMACS" = "x" -o "x$EMACS" = "xt" ];
     then 
       echo You must specify the EMACS environment variable 2>&1
       exit 1