From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 296 invoked by alias); 6 Jan 2018 20:57:48 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: List-Unsubscribe: X-Seq: 23051 Received: (qmail 10998 invoked by uid 1010); 6 Jan 2018 20:57:48 -0000 X-Qmail-Scanner-Diagnostics: from mail-qk0-f179.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(209.85.220.179):SA:0(-1.9/5.0):. Processed in 1.935071 secs); 06 Jan 2018 20:57:48 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_PASS,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 X-Envelope-From: schaefer@brasslantern.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | 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== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=2WG4oX1uYPjWYUAb/Xnd6b76M8Kgaae79OM9WGcdV9Q=; b=f5e8Kbao8YIcSdR4p47nV6Wyla4lb2McNP998CaLEd/61lqPJEhBmb6PFHjMnRtDhE j2cI2t3gtB8tve5ynG6IGe8JxWEqK46GktRHu+DGoTGCYHv9izlRPrUozDC58voPOm26 xFWj/jIn4wOI5Ns7k0S/aqXxiBDL8ezHAo5gt7G0b4Q26Cbal9oJj72T2umTgCSbx+jj aYjIfKOyZgV+ly7ne+xoutCFj366w8KmFsT3ggGqiu0xE/qxJBY9ugKUYxScGrPjTPlz +td+o7i5fYyzoQunUwt5XVb3ADhxK6X6oBqXOjvNdNQUz7KZun+H8VTGEWjGwQq+59wQ 05Gg== X-Gm-Message-State: AKwxytcgNs6O/toC9tnMeS2XfqFjvydNkITEjg7vLzSGEyP2aE5mxnu+ vcfsDDULBKJ3hRVDxHF62qrCiympKRDQGWNzAo1g7eox X-Google-Smtp-Source: ACJfBosNOB8IU0E+mQVJd5IbO73JfXqZ3zjlg8E+wK+UPybnh6X0yigF+oPWk5qutvSVANxPIFOqCOjy9IFQU94OrcI= X-Received: by 10.55.77.209 with SMTP id a200mr9253014qkb.239.1515272262679; Sat, 06 Jan 2018 12:57:42 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: From: Bart Schaefer Date: Sat, 6 Jan 2018 12:57:41 -0800 Message-ID: Subject: Re: Zsh requires Bash? 2002 revisited To: linuxtechguy@gmail.com Cc: zsh Content-Type: text/plain; charset="UTF-8" On Sat, Jan 6, 2018 at 12:36 PM, Jim 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.