From nobody Sat Mar 23 08:49:14 2024 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 4V1tD84PLJz5DwN3; Sat, 23 Mar 2024 08:49:28 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (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 mx1.freebsd.org (Postfix) with ESMTPS id 4V1tD80bdLz4Vjc; Sat, 23 Mar 2024 08:49:27 +0000 (UTC) (envelope-from kostikbel@gmail.com) Authentication-Results: mx1.freebsd.org; none Received: from tom.home (kib@localhost [127.0.0.1] (may be forged)) by kib.kiev.ua (8.18.1/8.18.1) with ESMTP id 42N8nEeP026765; Sat, 23 Mar 2024 10:49:17 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua 42N8nEeP026765 Received: (from kostik@localhost) by tom.home (8.18.1/8.18.1/Submit) id 42N8nETo026764; Sat, 23 Mar 2024 10:49:14 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Sat, 23 Mar 2024 10:49:14 +0200 From: Konstantin Belousov To: Antoine Brodin Cc: src-committers@freebsd.org, dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org Subject: Re: git: a200093c2163 - main - share/man/man9/Makefile: fix buildworld Message-ID: References: <202403230718.42N7IOks099212@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: <202403230718.42N7IOks099212@gitrepo.freebsd.org> X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FORGED_GMAIL_RCVD,FREEMAIL_FROM, NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=4.0.0 X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on tom.home X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:6939, ipnet:2001:470::/32, country:US] X-Rspamd-Queue-Id: 4V1tD80bdLz4Vjc On Sat, Mar 23, 2024 at 07:18:24AM +0000, Antoine Brodin wrote: > The branch main has been updated by antoine: > > URL: https://cgit.FreeBSD.org/src/commit/?id=a200093c216346bdafce5866fad3db4bccc1f802 > > commit a200093c216346bdafce5866fad3db4bccc1f802 > Author: Antoine Brodin > AuthorDate: 2024-03-23 07:17:59 +0000 > Commit: Antoine Brodin > CommitDate: 2024-03-23 07:17:59 +0000 > > share/man/man9/Makefile: fix buildworld > --- > share/man/man9/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile > index 597b487bb8ae..0d7cbf1b9854 100644 > --- a/share/man/man9/Makefile > +++ b/share/man/man9/Makefile > @@ -997,7 +997,7 @@ MLINKS+=dev_clone.9 drain_dev_clone_events.9 > MLINKS+=dev_refthread.9 devvn_refthread.9 \ > dev_refthread.9 dev_relthread.9 > MLINKS+=devfs_set_cdevpriv.9 devfs_clear_cdevpriv.9 \ > - devfs_set_cdevpriv.9 devfs_get_cdevpriv.9 > + devfs_set_cdevpriv.9 devfs_get_cdevpriv.9 \ > devfs_set_cdevpriv.9 devfs_foreach_cdevpriv.9 > MLINKS+=device_add_child.9 device_add_child_ordered.9 > MLINKS+=device_enable.9 device_disable.9 \ Thank you.