From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9F041A0567 for ; Tue, 9 Mar 2021 14:36:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6D3DB4068A; Tue, 9 Mar 2021 14:36:02 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id E772D4068A for ; Tue, 9 Mar 2021 14:36:00 +0100 (CET) IronPort-SDR: hb/rJAr4Ceh8iY41d+hnSYPFrdAgUihkavxOwDd/rTuC4qOHZ9K5XIy4KGu32kMSBBfYTvL7Fo s+ZSVJU9ZnNg== X-IronPort-AV: E=McAfee;i="6000,8403,9917"; a="187597333" X-IronPort-AV: E=Sophos;i="5.81,234,1610438400"; d="scan'208";a="187597333" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Mar 2021 05:35:59 -0800 IronPort-SDR: zUZjBAvtWvaFWjpjyTeKWM8V4igDUdTCBQg7FM9t9zXT8DoraTrPO5agFTXsOTYTCUk+2aDiF6 mp/g4oeqRoKQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,234,1610438400"; d="scan'208";a="371539538" Received: from silpixa00399952.ir.intel.com (HELO silpixa00399952.ger.corp.intel.com) ([10.237.222.38]) by orsmga006.jf.intel.com with ESMTP; 09 Mar 2021 05:35:58 -0800 From: David Hunt To: stable@dpdk.org Cc: david.hunt@intel.com Date: Tue, 9 Mar 2021 13:35:33 +0000 Message-Id: <20210309133533.39568-1-david.hunt@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-stable] [PATCH 19.11.7] lib/power: fix make build error X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" In a fix backported from 21.02, there was no modification to the Makefile included, as that file does not exist any more. There is a change needed to Makefile in 19.11 as that still uses make. Fixes: b00e2adc1d9b ("power: export guest channel header file") Signed-off-by: David Hunt --- lib/librte_power/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_power/Makefile b/lib/librte_power/Makefile index 9a6db07e5f..16e384e446 100644 --- a/lib/librte_power/Makefile +++ b/lib/librte_power/Makefile @@ -19,6 +19,6 @@ SRCS-$(CONFIG_RTE_LIBRTE_POWER) += rte_power_empty_poll.c SRCS-$(CONFIG_RTE_LIBRTE_POWER) += power_pstate_cpufreq.c # install this header file -SYMLINK-$(CONFIG_RTE_LIBRTE_POWER)-include := rte_power.h rte_power_empty_poll.h +SYMLINK-$(CONFIG_RTE_LIBRTE_POWER)-include := rte_power.h rte_power_empty_poll.h rte_power_guest_channel.h include $(RTE_SDK)/mk/rte.lib.mk -- 2.17.1