From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12842 invoked from network); 13 Jan 1998 15:23:10 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 13 Jan 1998 15:23:10 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id KAA01701; Tue, 13 Jan 1998 10:03:40 -0500 (EST) Resent-Date: Tue, 13 Jan 1998 10:03:40 -0500 (EST) Message-Id: <199801131503.KAA01683@math.gatech.edu> X-Mailer: exmh version 2.0zeta 7/24/97 To: zsh-workers@math.gatech.edu (Zsh hackers list) Subject: Re: zsh-3.1.2-zefram3 In-reply-to: Your message of "Tue, 13 Jan 1998 14:36:14 +0100." <199801131336.OAA25016@sgi.ifh.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 13 Jan 1998 15:04:26 +0000 From: Bruce Stephens Resent-Message-ID: <"f8DVP1.0.TQ.B9ukq"@math> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/3704 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu pws@ifh.de said: > I got this to compile by altering SHELL in both Src/Makefile and Src/ > Makemod.in.in to point to a version of zsh running as ksh. This seems > to be OK (I have zle compiled in). Ah, that works better. I hadn't changed Makemod.in.in before. Line 94 of Src/makepro.awk causes a problem with Solaris2.5.1's nawk: sub(/=.*$/, "", dcltor) Quoting the = seems to fix it. sub(/\=.*$/, "", dcltor) After that it seems to compile OK.