From owner-svn-doc-head@freebsd.org Tue Sep 25 17:54:03 2018 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28CC110B7400; Tue, 25 Sep 2018 17:54:03 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1AFA7AD94; Tue, 25 Sep 2018 17:54:02 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CC20C3CE1; Tue, 25 Sep 2018 17:54:02 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w8PHs2E2074649; Tue, 25 Sep 2018 17:54:02 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8PHs2sC074648; Tue, 25 Sep 2018 17:54:02 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201809251754.w8PHs2sC074648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 25 Sep 2018 17:54:02 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r52300 - head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware X-SVN-Group: doc-head X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware X-SVN-Commit-Revision: 52300 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2018 17:54:03 -0000 Author: gjb Date: Tue Sep 25 17:54:02 2018 New Revision: 52300 URL: https://svnweb.freebsd.org/changeset/doc/52300 Log: Move CLEANDIRS within the target conditional. Use .ORDER to attempt to catch a build race that had been lingering since reconnecting hardware.html to the build. Preemptive pointyhat in case things get worse: gjb Sponsored by: The FreeBSD Foundation Modified: head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile Modified: head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile ============================================================================== --- head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile Tue Sep 25 08:57:25 2018 (r52299) +++ head/en_US.ISO8859-1/htdocs/releases/12.0R/hardware/Makefile Tue Sep 25 17:54:02 2018 (r52300) @@ -21,8 +21,6 @@ FORMATS?= html txt INSTALL_COMPRESSED?= gz INSTALL_ONLY_COMPRESSED= -CLEANDIRS+= ${.CURDIR}/svn.* - .if ${.TARGET:M${DOC}.html} MAN4TMP!= ${MKTEMP} -d ${.CURDIR}/svn.XXXXXXXX MAN4DIR= ${MAN4TMP} @@ -35,7 +33,9 @@ hardware.parsed.xml: dev-auto.ent man4-rmsrc dev-auto.ent: man4-src-checkout ${PERL} ${MAN2HWNOTES_CMD} ${MAN2HWNOTES_FLAGS} -a ${ARCHLIST} -o ${.TARGET} ${MAN4PAGES} || (rm -f ${.TARGET}) CLEANFILES+= dev-auto.ent +CLEANDIRS+= ${.CURDIR}/svn.* +.ORDER: man4-rmsrc man4-src-checkout man4-src-checkout: mkdir -p ${MAN4TMP} ${SVN} co svn://svn.freebsd.org/base/${SRCBRANCH}/share/man/man4 \