From patchwork Tue Sep 1 14:51:27 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 76266 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1204AA04AC; Tue, 1 Sep 2020 16:51:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EB1EF1C0CA; Tue, 1 Sep 2020 16:51:36 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 00D5A1C0B7 for ; Tue, 1 Sep 2020 16:51:34 +0200 (CEST) IronPort-SDR: 7GizfylPSy6kNMURAG++CC97gdPCZjBRfRtL7/Q5b1Jkt4cw/Mydv8/bm5TyCB7pt/qm56UT1A ymiqF+ikgB6w== X-IronPort-AV: E=McAfee;i="6000,8403,9730"; a="144917714" X-IronPort-AV: E=Sophos;i="5.76,379,1592895600"; d="scan'208";a="144917714" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Sep 2020 07:51:33 -0700 IronPort-SDR: klyiWmT80/ERdtbochhYIfhI5ui0B5OzyiHAlFOEiygJT6hWQ/fgYwqdVdq+v2XoeUQNMlgpJr pgG6m1ehzNfw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,379,1592895600"; d="scan'208";a="501768338" Received: from silpixa00399126.ir.intel.com ([10.237.222.27]) by fmsmga006.fm.intel.com with ESMTP; 01 Sep 2020 07:51:33 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Tue, 1 Sep 2020 15:51:27 +0100 Message-Id: <20200901145127.553850-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] doc: add index file to doxygen dependencies X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The doxygen index file is not printed as a processed file by doxygen so it does not appear in the output .d (dependency file) list automatically generated. Therefore, for correct rebuild tracking, we need to explicitly include it as a dependency of the doxygen job. Signed-off-by: Bruce Richardson --- doc/api/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/api/meson.build b/doc/api/meson.build index 49d5b9a15..5b92c204f 100644 --- a/doc/api/meson.build +++ b/doc/api/meson.build @@ -44,6 +44,7 @@ doxy_conf = configure_file(input: 'doxy-api.conf.in', doxy_build = custom_target('doxygen', depends: example, + depend_files: 'doxy-api-index.md', input: doxy_conf, output: 'api', depfile: 'api.d',