Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753233AbcL2R1o (ORCPT ); Thu, 29 Dec 2016 12:27:44 -0500 Received: from mx2.suse.de ([195.135.220.15]:47514 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752993AbcL2R1n (ORCPT ); Thu, 29 Dec 2016 12:27:43 -0500 To: Johannes Berg , Jonathan Corbet , Linux Kernel Maling List From: Jeff Mahoney Subject: [PATCH] Docbook: re-remove 80211.xml from Makefile Message-ID: Date: Thu, 29 Dec 2016 12:27:38 -0500 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Thunderbird/45.5.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1181 Lines: 30 Merge commit 726d661fea3 (Merge remote-tracking branch 'sound/topic/restize-docs' into sound) accidentally re-added 80211.xml to the DocBook Makefile, but commit 819bf593767 (docs-rst: sphinxify 802.11 documentation) removed 80211.tmpl and the rule from the Makefile. As a result, we get build failures for docs: make[2]: *** No rule to make target 'Documentation/DocBook/80211.xml', needed by 'Documentation/DocBook/80211.9'. Stop. This patch re-removes the 80211 rule. Fixes: 726d661fea3 (Merge remote-tracking branch 'sound/topic/restize-docs' into sound) Signed-off-by: Jeff Mahoney --- Documentation/DocBook/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile @@ -12,7 +12,7 @@ DOCBOOKS := z8530book.xml \ kernel-api.xml filesystems.xml lsm.xml kgdb.xml \ gadget.xml libata.xml mtdnand.xml librs.xml rapidio.xml \ genericirq.xml s390-drivers.xml uio-howto.xml scsi.xml \ - 80211.xml sh.xml regulator.xml w1.xml \ + sh.xml regulator.xml w1.xml \ writing_musb_glue_layer.xml iio.xml ifeq ($(DOCBOOKS),) -- Jeff Mahoney SUSE Labs