Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Zsh requires Bash? 2002 revisited
- X-seq: zsh-users 23051
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: linuxtechguy@xxxxxxxxx
- Subject: Re: Zsh requires Bash? 2002 revisited
- Date: Sat, 6 Jan 2018 12:57:41 -0800
- Cc: zsh <zsh-users@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=2WG4oX1uYPjWYUAb/Xnd6b76M8Kgaae79OM9WGcdV9Q=; b=CEnKhbH+1xMFrxMN31sbyV6vzh3HqjoSGLCx0FbTMwWZhPjt8wiaYZ2hq8sJzKNhC6 bScN53mSuNVp43AjB5vcjwarvcnHDJ/47opHJ8wnzwhbMjOE2UwQXmxwb1zK+KxLmApb Hx0U9XPogm93GU5BohY222n29VRLSDjzMJGxicfUdWiD3cxJNZsjt7ZGHuWEnvqDLzsB MlyNTZ9Ey7H6RjuEsAlqKXET+2ZTkS4gR4lu+GF/qT78TWjh/Aw6dU4hX/rvEi01ap8m ZSN76mS3AhKgm1lMhRbOTl9c1/yJwmtgCbwhLWcIKJColHOQ4X2F79Smatq+1/HEFZlN 90GA==
- In-reply-to: <CA+rB6G+urH8g4TTNji44CS5jc5hqa+=Uuc=xxCzB1ggHW2XOgg@mail.gmail.com>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- List-unsubscribe: <mailto:zsh-users-unsubscribe@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <CA+rB6G+SJ+cojcoDgSAwM5PQAJhF_peVTyHbRYzrQ4ZTunNnCw@mail.gmail.com> <CAH+w=7ZFYxPN559pyystrLf2Ggn89D7gzHyhDzLAKaoJ9wiZ2Q@mail.gmail.com> <CA+rB6G+urH8g4TTNji44CS5jc5hqa+=Uuc=xxCzB1ggHW2XOgg@mail.gmail.com>
On Sat, Jan 6, 2018 at 12:36 PM, Jim <linux.tech.guy@xxxxxxxxx> wrote:
>
> Last lines of make:
Given that you're not seeing shell syntax errors or the like, my guess
is that posh is mishandling the -e command line option (errexit) and
causing some branches of make to fail prematurely. Or, posh has rm as
a built-in and that's mishandling the -f option. Try building with
"make -k"?
If it's the "rm" problem, there are two places in Makefile.in
./Src/Makefile.in: rm -f stamp-modobjs.tmp
./Src/Makefile.in: rm -f stamp-modobjs stamp-modobjs.tmp
where you can try "[ -f stamp-modobjs.tmp ] && rm ..." (you'll have to
split the latter of the above into two separate "rm" calls).
If that still fails it might help to see a diff of config.log from
bash vs. posh, but it seems much more likely that it's make that's
giving up here.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author