From owner-svn-doc-all@freebsd.org Tue Sep 19 14:14:35 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 A7CA5E15403; Tue, 19 Sep 2017 14:14:35 +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 mx1.freebsd.org (Postfix) with ESMTPS id 753DE81652; Tue, 19 Sep 2017 14:14:35 +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 v8JEEY2E080590; Tue, 19 Sep 2017 14:14:34 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8JEEY2D080589; Tue, 19 Sep 2017 14:14:34 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201709191414.v8JEEY2D080589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 19 Sep 2017 14:14:34 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r50881 - head/en_US.ISO8859-1/articles/freebsd-releng X-SVN-Group: doc-head X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: head/en_US.ISO8859-1/articles/freebsd-releng X-SVN-Commit-Revision: 50881 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-doc-all@freebsd.org X-Mailman-Version: 2.1.23 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: Tue, 19 Sep 2017 14:14:35 -0000 Author: gjb Date: Tue Sep 19 14:14:34 2017 New Revision: 50881 URL: https://svnweb.freebsd.org/changeset/doc/50881 Log: Revert r50867, which added '.PHONY' to the freebsd-releng/Makefile to ensure the article.html file would always be updated if any of the dependent releng-*.xml files were updated. Implement a proper fix to ensure the dependencies are properly tracked, and the page(s) are rebuilt after an update. Thank you to wosch@ for providing the correct fix for this. Submitted by: wosch Sponsored by: The FreeBSD Foundation Modified: head/en_US.ISO8859-1/articles/freebsd-releng/Makefile Modified: head/en_US.ISO8859-1/articles/freebsd-releng/Makefile ============================================================================== --- head/en_US.ISO8859-1/articles/freebsd-releng/Makefile Tue Sep 19 10:03:26 2017 (r50880) +++ head/en_US.ISO8859-1/articles/freebsd-releng/Makefile Tue Sep 19 14:14:34 2017 (r50881) @@ -12,11 +12,14 @@ INSTALL_ONLY_COMPRESSED?= SRCS= article.xml +DEPS!= egrep '' \ + ${SRCS} | sed -E 's,.*"./([^"]+)".*,\1,' + CSS_SHEET_ADDITIONS=extra.css URL_RELPREFIX?= ../../../.. DOC_PREFIX?= ${.CURDIR}/../../.. -all: .PHONY clean +index.html ${DOC}.html: ${DEPS} .include "${DOC_PREFIX}/share/mk/doc.project.mk"