From nobody Thu Oct 7 07:12:21 2021 X-Original-To: dev-commits-src-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 40F7D12D0A85; Thu, 7 Oct 2021 07:12:24 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HQ2Zc18HQz3mL0; Thu, 7 Oct 2021 07:12:24 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from aniel.nours.eu (nours.eu [IPv6:2001:41d0:8:3a4d::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: bapt) by smtp.freebsd.org (Postfix) with ESMTPSA id E89C8253A6; Thu, 7 Oct 2021 07:12:23 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: by aniel.nours.eu (Postfix, from userid 1001) id F1B2A5A549; Thu, 7 Oct 2021 09:12:21 +0200 (CEST) Date: Thu, 7 Oct 2021 09:12:21 +0200 From: Baptiste Daroussin To: Kyle Evans Cc: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: Re: git: 4d7876aa70e2 - main - build: slap a libtinfo dependency on libncurses Message-ID: <20211007071221.ngdjdip2qosyhumv@aniel.nours.eu> References: <202110070303.19733k8d033800@gitrepo.freebsd.org> List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-src-all@freebsd.org X-BeenThere: dev-commits-src-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202110070303.19733k8d033800@gitrepo.freebsd.org> X-ThisMailContainsUnwantedMimeParts: N On Thu, Oct 07, 2021 at 03:03:46AM +0000, Kyle Evans wrote: > The branch main has been updated by kevans: > > URL: https://cgit.FreeBSD.org/src/commit/?id=4d7876aa70e2b7c7c941399a61b6f5e5f8fee088 > > commit 4d7876aa70e2b7c7c941399a61b6f5e5f8fee088 > Author: Kyle Evans > AuthorDate: 2021-10-07 03:01:05 +0000 > Commit: Kyle Evans > CommitDate: 2021-10-07 03:03:37 +0000 > > build: slap a libtinfo dependency on libncurses > > This mirrors the SUBDIR_DEPEND in lib/ncurses/Makefile. > > Reported by: jenkins (e.g., riscv64 build #23984) > Fixes: 396851c20aeb ("ncurses: split libtinfo from libncurses") > --- > Makefile.inc1 | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/Makefile.inc1 b/Makefile.inc1 > index 6dcfa6a17d3d..9b81d4029608 100644 > --- a/Makefile.inc1 > +++ b/Makefile.inc1 > @@ -2973,6 +2973,8 @@ lib/libkvm__L: lib/libelf__L > _lib_libradius= lib/libradius > .endif > > +lib/ncurses/ncurses__L: lib/ncurses/tinfo__L > + > .if ${MK_OFED} != "no" > _prebuild_libs+= \ > lib/ofed/libibverbs \ > Good catch! thank you! Best regards, Bapt