Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756126Ab0FNLBo (ORCPT ); Mon, 14 Jun 2010 07:01:44 -0400 Received: from adelie.canonical.com ([91.189.90.139]:45691 "EHLO adelie.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756025Ab0FNLBn (ORCPT ); Mon, 14 Jun 2010 07:01:43 -0400 From: Andy Whitcroft To: Randy Dunlap , Ben Hutchings , linux-doc@vger.kernel.org Cc: Andrew Morton , linux-kernel@vger.kernel.org, Andy Whitcroft Subject: [PATCH 1/1] docbook: need xmldoclinks for all doc types Date: Mon, 14 Jun 2010 12:01:37 +0100 Message-Id: <1276513297-23306-1-git-send-email-apw@canonical.com> X-Mailer: git-send-email 1.7.0.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1276 Lines: 42 We need the xmldoclinks built for any document types built from the XML sources. Signed-off-by: Andy Whitcroft --- Documentation/DocBook/Makefile | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile index c7e5dc7..f918d4a 100644 --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile @@ -35,17 +35,17 @@ PS_METHOD = $(prefer-db2x) PHONY += xmldocs sgmldocs psdocs pdfdocs htmldocs mandocs installmandocs cleandocs xmldoclinks BOOKS := $(addprefix $(obj)/,$(DOCBOOKS)) -xmldocs: $(BOOKS) xmldoclinks +xmldocs: xmldoclinks $(BOOKS) sgmldocs: xmldocs PS := $(patsubst %.xml, %.ps, $(BOOKS)) -psdocs: $(PS) +psdocs: xmldoclinks $(PS) PDF := $(patsubst %.xml, %.pdf, $(BOOKS)) -pdfdocs: $(PDF) +pdfdocs: xmldoclinks $(PDF) HTML := $(sort $(patsubst %.xml, %.html, $(BOOKS))) -htmldocs: $(HTML) +htmldocs: xmldoclinks $(HTML) $(call build_main_index) $(call build_images) -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/