From patchwork Sat Apr 18 01:28:55 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 18781 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n3I1SN6P012241 for ; Sat, 18 Apr 2009 01:28:23 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753732AbZDRB2W (ORCPT ); Fri, 17 Apr 2009 21:28:22 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753672AbZDRB2W (ORCPT ); Fri, 17 Apr 2009 21:28:22 -0400 Received: from rcsinet11.oracle.com ([148.87.113.123]:45875 "EHLO rgminet11.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753081AbZDRB2V (ORCPT ); Fri, 17 Apr 2009 21:28:21 -0400 Received: from acsinet15.oracle.com (acsinet15.oracle.com [141.146.126.227]) by rgminet11.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n3I1Vhgq029953 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sat, 18 Apr 2009 01:31:45 GMT Received: from acsmt702.oracle.com (acsmt702.oracle.com [141.146.40.80]) by acsinet15.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id n3I1WVA7007336; Sat, 18 Apr 2009 01:32:33 GMT Received: from chimera.site (/71.117.247.66) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Fri, 17 Apr 2009 18:28:09 -0700 Date: Fri, 17 Apr 2009 18:28:55 -0700 From: Randy Dunlap To: linux-kbuild@vger.kernel.org Cc: linux-doc@vger.kernel.org, samr Subject: [PATCH] docs: also clean index.html Message-Id: <20090417182855.145021dd.randy.dunlap@oracle.com> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.6.0 (GTK+ 2.12.0; x86_64-unknown-linux-gnu) Mime-Version: 1.0 X-Source-IP: acsinet15.oracle.com [141.146.126.227] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A010207.49E92CB1.0017:SCFMA922111,ss=1,fgs=0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org From: Randy Dunlap Missed index.html in "make cleandocs", so add it. Signed-off-by: Randy Dunlap --- Documentation/DocBook/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- lnx-2630-rc2.orig/Documentation/DocBook/Makefile +++ lnx-2630-rc2/Documentation/DocBook/Makefile @@ -143,7 +143,8 @@ quiet_cmd_db2pdf = PDF $@ $(call cmd,db2pdf) -main_idx = Documentation/DocBook/index.html +index = index.html +main_idx = Documentation/DocBook/$(index) build_main_index = rm -rf $(main_idx) && \ echo '

Linux Kernel HTML Documentation

' >> $(main_idx) && \ echo '

Kernel Version: $(KERNELVERSION)

' >> $(main_idx) && \ @@ -232,7 +233,7 @@ clean-files := $(DOCBOOKS) \ $(patsubst %.xml, %.pdf, $(DOCBOOKS)) \ $(patsubst %.xml, %.html, $(DOCBOOKS)) \ $(patsubst %.xml, %.9, $(DOCBOOKS)) \ - $(C-procfs-example) + $(C-procfs-example) $(index) clean-dirs := $(patsubst %.xml,%,$(DOCBOOKS)) man