From nobody Wed Nov 30 14:21:37 2022 X-Original-To: dev-commits-ports-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 4NMhHZ4sdXz4hdQN; Wed, 30 Nov 2022 14:22:34 +0000 (UTC) (envelope-from herbert@gojira.at) Received: from mail.bsd4all.net (mail.bsd4all.net [94.130.200.20]) (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 ECDSA (P-384) client-digest SHA384) (Client CN "mail.bsd4all.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4NMhHZ2CGPz3pHN; Wed, 30 Nov 2022 14:22:34 +0000 (UTC) (envelope-from herbert@gojira.at) Authentication-Results: mx1.freebsd.org; none Date: Wed, 30 Nov 2022 15:21:37 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=gojira.at; s=mail202005; t=1669818145; bh=jMgRTHPN6iteFi3s6WxBoifOGYWyOaDCQvwoXhpRyRE=; h=Date:Message-ID:From:To:Cc:Subject:MIME-Version:Content-Type; b=De4/T2v6YLxB9TQRz3wI/pcBCbujAP1R07te+ag6bml60FL0RITfIiWrnqsN6uq0P cTHjv3H4VjRxi0hu2RuFrf/uecGMKNTwcnPm/kiJgRCMhhnXdH+20eHhDIjW+U51Ns z3Bc0ai3lFXr4gpmqgkhjdLRG7cuN6PqS8aRQrcuqqr71OV3i083S8l7EBWqjM9h77 Eo+nKx765vrK3VnXfS+Yr/ZI9sjxW10WlBjw+cBDFt1q/nzDA2DwOOQJtYbNnka6BQ bNJjiy1wXDGa5yIAD3FDC7qSioZ5EH9kPSBS2lZLdgd3RDXOkEQozER2Z5lORzIsWr xZAd7yghbOUbg== Message-ID: <874juga5fy.wl-herbert@gojira.at> From: "Herbert J. Skuhra" To: Muhammad Moinur Rahman Cc: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: Re: git: d3eade349060 - main - net/Makefile: Fix previous commit In-Reply-To: <202211301333.2AUDX43G048311@gitrepo.freebsd.org> References: <202211301333.2AUDX43G048311@gitrepo.freebsd.org> User-Agent: Wanderlust/2.15.9 (Almost Unreal) Emacs/30.0 Mule/6.0 List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 4NMhHZ2CGPz3pHN X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:24940, ipnet:94.130.0.0/16, country:DE] X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-ThisMailContainsUnwantedMimeParts: N On Wed, 30 Nov 2022 14:33:04 +0100, Muhammad Moinur Rahman wrote: > > The branch main has been updated by bofh: > > URL: https://cgit.FreeBSD.org/ports/commit/?id=d3eade34906005756ceddc57fc7a41093595998f > > commit d3eade34906005756ceddc57fc7a41093595998f > Author: Muhammad Moinur Rahman > AuthorDate: 2022-11-30 13:32:08 +0000 > Commit: Muhammad Moinur Rahman > CommitDate: 2022-11-30 13:32:08 +0000 > > net/Makefile: Fix previous commit > > Fixes: 0d3a478 net/pecl-mosquitto: Cleanup > --- > net/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/net/Makefile b/net/Makefile > index 802e18967723..e914181f2258 100644 > --- a/net/Makefile > +++ b/net/Makefile > @@ -466,6 +466,7 @@ > SUBDIR += mod_amd > SUBDIR += mopd > SUBDIR += mosh > + SUBDIR += mosquitto I think you need (spaces not tab): diff --git a/net/Makefile b/net/Makefile index e914181f2258..44dae6e30753 100644 --- a/net/Makefile +++ b/net/Makefile @@ -466,7 +466,7 @@ SUBDIR += mod_amd SUBDIR += mopd SUBDIR += mosh - SUBDIR += mosquitto + SUBDIR += mosquitto SUBDIR += motsognir SUBDIR += mpd-l2tp-ipv6pd-client SUBDIR += mpd5 Otherwise 'pkg version -vPL=' breaks. $ pkg version -vPL= dhcpd-6.6.20200413 ? orphaned: net/dhcpd mpd5-5.9_12 ? orphaned: net/mpd5 openntpd-6.8p1_5,2 ? orphaned: net/openntpd -- Herbert