From owner-dev-commits-src-all@freebsd.org Thu Sep 16 07:32:39 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7F7A1676688; Thu, 16 Sep 2021 07:32:39 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (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 "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4H981g2v5Sz3JKw; Thu, 16 Sep 2021 07:32:39 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 44F8C1D456; Thu, 16 Sep 2021 07:32:39 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 18G7Wdmv023267; Thu, 16 Sep 2021 07:32:39 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18G7Wdi9023266; Thu, 16 Sep 2021 07:32:39 GMT (envelope-from git) Date: Thu, 16 Sep 2021 07:32:39 GMT Message-Id: <202109160732.18G7Wdi9023266@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Piotr Pawel Stefaniak Subject: git: 12061d2626e0 - main - diff: link with libm for sqrt() MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: pstef X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 12061d2626e095cd5a5cbadeb567916e7d74db5a Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Sep 2021 07:32:39 -0000 The branch main has been updated by pstef: URL: https://cgit.FreeBSD.org/src/commit/?id=12061d2626e095cd5a5cbadeb567916e7d74db5a commit 12061d2626e095cd5a5cbadeb567916e7d74db5a Author: Piotr Pawel Stefaniak AuthorDate: 2021-09-16 07:27:29 +0000 Commit: Piotr Pawel Stefaniak CommitDate: 2021-09-16 07:31:44 +0000 diff: link with libm for sqrt() Reported by: Jenkins Fixes: bcf2e78dc48378456798191f1c15cb76d6221a65 --- usr.bin/diff/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/diff/Makefile b/usr.bin/diff/Makefile index a9f79d3d81e1..4879570306ba 100644 --- a/usr.bin/diff/Makefile +++ b/usr.bin/diff/Makefile @@ -4,6 +4,7 @@ PROG= diff SRCS= diff.c diffdir.c diffreg.c xmalloc.c pr.c +LIBADD= m HAS_TESTS= SUBDIR.${MK_TESTS}+= tests