From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D495BC433E6 for ; Tue, 1 Sep 2020 14:51:37 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 92FDC206EB for ; Tue, 1 Sep 2020 14:51:37 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 92FDC206EB Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org 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 Content-Transfer-Encoding: 8bit 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', -- 2.25.1