From xemacs-m  Tue Sep 23 23:42:40 1997
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id XAA25744
	for <xemacs-beta@xemacs.org>; Tue, 23 Sep 1997 23:42:39 -0500 (CDT)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.7/8.8.7) id VAA06876;
	Tue, 23 Sep 1997 21:48:41 -0700
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: [PATCH] Re: SUCCESS: 20.3 "Sarajevo" XEmacs under Debian 1.3 Linux 2.0.29
References: <m0xDmxe-00002WC@tanko.sk.tsukuba.ac.jp>
X-Face: (:YAD@JS'&Kz'M}n7eX7gEvPR6U1mJ-kt;asEc2qAv;h{Yw7ckz<7+X_SYeTNAaPui:e~x$
 ,A=gkt*>UPL/}\a/#C~v2%ETiAY_sx;xve0yL??JWTtX_-NUzXyP38UdW#cmN1\4(X!c3m#%IbtB-3
 Z-!xpZi!`E.s{(;aP=b11"!3wQu]1j@^V|;n=B|{l<bZV1.AI`zWV%kPCnUhcgEe\(}/_kNd6,*3ZJ
 Q3o<YQ3^u;7jS=:p0--u3msQO
X-Attribution: sb
From: SL Baur <steve@xemacs.org>
In-Reply-To: "Stephen J. Turnbull"'s message of "Wed, 24 Sep 1997 17:38:18 +0900 (JST)"
Mime-Version: 1.0 (generated by tm-edit 7.108)
Content-Type: text/plain; charset=US-ASCII
Date: 23 Sep 1997 21:48:41 -0700
Message-ID: <m2yb4nmi52.fsf@altair.xemacs.org>
Lines: 54
X-Mailer: Quassia Gnus v0.10/XEmacs 20.3(beta24) - "Ljubljana"

Stephen J Turnbull <turnbull@sk.tsukuba.ac.jp> writes:

> I looked at the Makefile, and at ll. 24--30 and 79:
> -----
> # Use whichever you like most
> #EMACS = xemacs
> #EMACS = /usr/local/bin/emacs
> EMACS = emacs

> # The SHELL variable is used only for making the distribution.
> SHELL = /bin/csh
> -----
> # Note that the redirection is done by a Bourne Shell.
> -----

> I caught this because I don't even have csh installed; I don't know
> enough about it to fix the Makefile although it's probably trivial.

:-)  The only thing that will break changing the SHELL assignment is
the distribution dependencies at the bottom, and they aren't used
by XEmacs.

1997-09-23  SL Baur  <steve@altair.xemacs.org>

	* ilisp/Makefile (SHELL): Remove dependency on /bin/csh.

Index: lisp/ilisp/Makefile
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/lisp/ilisp/Makefile,v
retrieving revision 1.3
diff -u -r1.3 Makefile
--- Makefile	1997/07/07 00:52:53	1.3
+++ Makefile	1997/09/24 04:43:53
@@ -28,7 +28,9 @@
 EMACS = emacs
 
 # The SHELL variable is used only for making the distribution.
-SHELL = /bin/csh
+#SHELL = /bin/csh
+# Tsk, tsk, Though shalt not use csh in distributed scripts.
+SHELL = /bin/sh
 
 # These are used mostly for packaging the distribution
 Ilisp_src_dir = $(shell pwd)


> The Makefile also says
> -----
> # Updated for XEmacs autoloads builds, but unused at present since no
> #  autoloads are generated, and this package hasn't been customized.
> -----
> so maybe nobody cares :-)

:-)

