From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.5 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,DKIM_VALID_EF,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: from zero.zsh.org (zero.zsh.org [IPv6:2a02:898:31:0:48:4558:7a:7368]) by inbox.vuxu.org (Postfix) with ESMTP id 4FDA724716 for ; Fri, 2 Feb 2024 18:09:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=zsh.org; s=rsa-20210803; h=List-Archive:List-Owner:List-Post:List-Unsubscribe: List-Subscribe:List-Help:List-Id:Sender:Message-ID:Date: Content-Transfer-Encoding:Content-ID:Content-Type:MIME-Version:Subject:To: References:From:In-reply-to:cc:Reply-To:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID; bh=/OAH41HcNgvD6ByDgfGUmMbCAgtzNr8Hx299UG+x0Ds=; b=QVYjVuSZ8HsPkSgc4aYqcpF8CD S/WRpvm9rSA1fLaCe/dkvPCR3lPu5iiPC89jmHbYxmSHypS4w70ZSdbDebVFOUiI0yB9rAdysox/7 La7BzKnx550gjPSBuHiSWzawBHFHUyG/NAZqVr/Fw7Ao18ZyJtngSvIxN0NH80sbkFtDtBCpcZ+PZ o8rlj/TePhvgx76gK7x2zD9e/WCwhKjoPpSkcB0I7vBcOiLyjSNHkE86u/O1yvfAqHezU9SW63RFO K8MR5Xc/og9+ritINd0EGVVhNB1H+gcg7oduUPSrPpNnhQAugFH+iykgccMYEd9cEHkipnpenOOeg nhwv6Hjg==; Received: by zero.zsh.org with local id 1rVx2J-000A73-Mz; Fri, 02 Feb 2024 17:09:07 +0000 Received: by zero.zsh.org with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) id 1rVx1s-0009RL-HK; Fri, 02 Feb 2024 17:08:40 +0000 Received: from [192.168.178.21] (helo=hydra) by mail.kiddle.eu with esmtp(Exim 4.97.1) (envelope-from ) id 1rVx1r-0000000034P-0p9H; Fri, 02 Feb 2024 18:08:39 +0100 cc: zsh-users@zsh.org In-reply-to: From: Oliver Kiddle References: To: Ray Andrews Subject: Re: build from source MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-ID: <11803.1706893719.1@hydra> Content-Transfer-Encoding: 8bit Date: Fri, 02 Feb 2024 18:08:39 +0100 Message-ID: <11804-1706893719.193399@QYHM.FK8t.SZbG> X-Seq: 29614 Archived-At: X-Loop: zsh-users@zsh.org Errors-To: zsh-users-owner@zsh.org Precedence: list Precedence: bulk Sender: zsh-users-request@zsh.org X-no-archive: yes List-Id: List-Help: , List-Subscribe: , List-Unsubscribe: , List-Post: List-Owner: List-Archive: Ray Andrews wrote: > > The 'C02' test reports the same error.  I'm tempted to fiddle with a copy of > the test and see just what's going on there.  I doubt anything is really > broken, as you say. It is fairly easy to replicate. Use stat to examine the timestamps. The test is reliant on the underlying filesystem. I know to avoid builds in my home directory which is typically NFS and prefer a local scratch filesystem which will also be faster. Use df -T . to see the type of filesystem for the current directory. > /bin/sh: 4: makeinfo: not found > make[1]: *** [Makefile:498: install.info] Error 1 > make[1]: Leaving directory '/aWorking/Zsh/zsh-5.9/Doc' > make: *** [Makefile:255: install.info] Error 2 > > Debian has no such thing as 'makeinfo' but it does have 'install-info' and file > 'INSTALL' does say: apt install texinfo Debian's website has a very useful feature for searching by file contents. https://packages.debian.org/cgi-bin/search_contents.pl?word=makeinfo&searchmode=searchfiles&case=insensitive&version=unstable&arch=i386 Or you can install and setup command-not-found For building zsh (or anything) from source, getting all the dependencies installed tends to be easier than digging into Makefiles to skip non-essentials. It'd be really good to get more testing of the current git head. There have been quite a few changes and it'd be good to find any regressions before a release. Oliver