From owner-svn-ports-head@freebsd.org Fri Jun 23 09:12:17 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AE2ADA0469; Fri, 23 Jun 2017 09:12:17 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7DDD7E261; Fri, 23 Jun 2017 09:12:16 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 3F5C63021; Fri, 23 Jun 2017 09:12:16 +0000 (UTC) Date: Fri, 23 Jun 2017 09:12:16 +0000 From: Alexey Dokuchaev To: Dirk Meyer Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r444162 - head/mail/fdm Message-ID: <20170623091216.GA59301@FreeBSD.org> References: <201706230005.v5N05uAv003195@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline In-Reply-To: <201706230005.v5N05uAv003195@repo.freebsd.org> User-Agent: Mutt/1.8.2 (2017-04-18) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2017 09:12:17 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jun 23, 2017 at 12:05:56AM +0000, Dirk Meyer wrote: > New Revision: 444162 > URL: https://svnweb.freebsd.org/changeset/ports/444162 > > Log: > - fix build, add MAKE_JOBS_UNSAFE > PR: 220072 > Submitted by: Brad Sliger Why not fix it properly instead, by adding missing dependency of `lex.c' (no other file wants to include `parse.h') on it? See attachment. ./danfe --0F1p//8PRICkK4MW Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="fdm.diff" Index: Makefile =================================================================== --- Makefile (revision 444167) +++ Makefile (working copy) @@ -13,8 +13,6 @@ LIB_DEPENDS= libtdb.so:databases/tdb -MAKE_JOBS_UNSAFE= yes - USE_GITHUB= yes GH_ACCOUNT= nicm USES= autoreconf:build ssl @@ -34,6 +32,7 @@ post-patch: @${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|g' ${WRKSRC}/*.[15] ${WRKSRC}/MANUAL + @${ECHO_CMD} 'lex.c: parse.h' >> ${WRKSRC}/Makefile.am pre-configure: @cd ${WRKSRC} && sh autogen.sh --0F1p//8PRICkK4MW--