From owner-svn-doc-all@freebsd.org Wed Nov 29 14:53:41 2017 Return-Path: Delivered-To: svn-doc-all@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 3672AE562AE; Wed, 29 Nov 2017 14:53:41 +0000 (UTC) (envelope-from mat@mat.cc) Received: from prod2.absolight.net (prod2.absolight.net [79.143.243.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "plouf.absolight.net", Issuer "CAcert Class 3 Root" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id DC2A2778DC; Wed, 29 Nov 2017 14:53:40 +0000 (UTC) (envelope-from mat@mat.cc) Received: from prod2.absolight.net (localhost [127.0.0.1]) by prod2.absolight.net (Postfix) with ESMTP id ADCBABDD25; Wed, 29 Nov 2017 15:53:36 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=mat.cc; h=subject:to :references:from:message-id:date:mime-version:in-reply-to :content-type:content-transfer-encoding; s=plouf; bh=YDYC5uKcYkA 5moJxmu9QJZpkV7o=; b=NysKBSqFKIqLbXczyBK5paNqEJ3e2e06IWxlkXN9DEn /ioKGy7tImzaiHNohy5zyOadqmwfYrjpJq9yIm0pS1sS3anhbFGHJvPK3ib1o1j6 39XkwIv3PeLZZ7HwoPjHEN0s5vdpKTc7XW+JAaZctdw7JIH24dbqqDtU+Tr/eWK0 = Received: from ogg.in.absolight.net (ogg.in.absolight.net [79.143.241.239]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by prod2.absolight.net (Postfix) with ESMTPSA id 733EFBDD1E; Wed, 29 Nov 2017 15:53:36 +0100 (CET) Subject: Re: svn commit: r51065 - head/share/mk To: Wolfram Schneider , doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org References: <201710061044.v96Ai0We005019@repo.freebsd.org> From: Mathieu Arnold Message-ID: Date: Wed, 29 Nov 2017 15:53:35 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: <201710061044.v96Ai0We005019@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Language: fr Content-Transfer-Encoding: quoted-printable X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire doc trees \(except for " user" , " projects" , and " translations" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Nov 2017 14:53:41 -0000 Le 06/10/2017 =C3=A0 12:44, Wolfram Schneider a =C3=A9crit=C2=A0: > Author: wosch > Date: Fri Oct 6 10:44:00 2017 > New Revision: 51065 > URL: https://svnweb.freebsd.org/changeset/doc/51065 > > Log: > 'make obj' doesn't really work for the docs, disable it by default > =20 > PR: 222488 It does if you run: make obj && make objlink && make now I have to carry a local patch that arcanist keeps complaining about := ( > Modified: > head/share/mk/doc.project.mk > head/share/mk/web.site.mk > > Modified: head/share/mk/doc.project.mk > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/share/mk/doc.project.mk Fri Oct 6 09:36:06 2017 (r51064) > +++ head/share/mk/doc.project.mk Fri Oct 6 10:44:00 2017 (r51065) > @@ -57,6 +57,9 @@ > # Currently the only method. > # > =20 > +# 'make obj' doesn't really work for the docs, disable it > +NO_OBJ?=3D YES > + > # Document-specific defaults > DOCFORMAT?=3D docbook > MAINTAINER?=3D doc@FreeBSD.org > @@ -107,7 +110,7 @@ DOC_LOCAL_MK=3D ${DOC_PREFIX}/${LANGCODE}/share/mk/= doc.l > =20 > # parallel build for target "all" and "clean" > NCPU?=3D ${.MAKE.JOBS} > -p-all p-clean p-obj: > +p-all p-clean: > make -V SUBDIR | sed -E 's/[ ]+$$//' | tr " " "\n" | \ > sed -E 's/^/make -C /; s/$$/ ${.TARGET:S/^p-//}/' | \ > tr '\n' '\0' | xargs -0 -n1 -P${NCPU:S/^$$/8/} /bin/sh -c > > Modified: head/share/mk/web.site.mk > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/share/mk/web.site.mk Fri Oct 6 09:36:06 2017 (r51064) > +++ head/share/mk/web.site.mk Fri Oct 6 10:44:00 2017 (r51065) > @@ -325,6 +325,9 @@ _PROGSUBDIR: .USE > .endfor > .endif > =20 > +# 'make obj' doesn't really work for the docs, disable it > +NO_OBJ?=3D YES > + > .include > =20 > # > > --=20 Mathieu Arnold