From owner-dev-commits-ports-main@freebsd.org Fri Apr 9 21:50:16 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 D80F35BF4DE; Fri, 9 Apr 2021 21:50:16 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (hamza.pair.com [209.68.5.143]) (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 4FHBd45hN2z4gSD; Fri, 9 Apr 2021 21:50:16 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from hamza.pair.com (localhost [127.0.0.1]) by hamza.pair.com (Postfix) with ESMTP id 9CEC733E50; Fri, 9 Apr 2021 17:50:10 -0400 (EDT) Received: from [192.168.1.5] (77.118.111.172.wireless.dyn.drei.com [77.118.111.172]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by hamza.pair.com (Postfix) with ESMTPSA id DC2C733E4B; Fri, 9 Apr 2021 17:50:09 -0400 (EDT) Date: Fri, 9 Apr 2021 23:50:07 +0200 (CEST) From: Gerald Pfeifer To: Adriaan de Groot cc: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: Re: git: c6093a753e76 - main - databases/mysql55-server: fix check-plist In-Reply-To: <202104090946.1399kTCb092931@gitrepo.freebsd.org> Message-ID: <34dabf10-5e9b-37da-2d74-b4f38a357b2e@pfeifer.com> References: <202104090946.1399kTCb092931@gitrepo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 4FHBd45hN2z4gSD X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Apr 2021 21:50:16 -0000 On Fri, 9 Apr 2021, Adriaan de Groot wrote: > databases/mysql55-server: fix check-plist > > An empty directory `info` is created during install; it's > not listed in the plist. Get rid of it. Is it possible this ... > +post-install: > + # Empty directory, but check-plist complains > + @${RMDIR} ${STAGEDIR}${PREFIX}/info || ${TRUE} ... is papering over the real issue? At first I though this port may be providing .info files, alas without using the INFO= infrastructure that I introduced in 2003. Then, looking a bit more: Is this port even dealing with .info files at all? What happens if you simply omit -DINSTALL_INFODIR="info" ? Or make it point to another, existing directory (such as "share")? Gerald