Message ID | 20210121172201.22582-6-david.hunt@intel.com (mailing list archive) |
---|---|
State | Accepted, archived |
Delegated to: | Thomas Monjalon |
Headers | show |
Series | power: fix make build for power apps | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
On 21-Jan-21 5:22 PM, David Hunt wrote: > From: Bruce Richardson <bruce.richardson@intel.com> > > Adjust meson.build so that 'ninja install' copies the new header > file into the installation directory. > > Fixes: 210c383e247b ("power: packet format for vm power management") > Fixes: cd0d5547e873 ("power: vm communication channels in guest") > Cc: stable@dpdk.org > > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> > Signed-off-by: David Hunt <david.hunt@intel.com> > --- Acked-by: Anatoly Burakov <anatoly.burakov@intel.com>
diff --git a/lib/librte_power/meson.build b/lib/librte_power/meson.build index 4b4cf1b90..541569528 100644 --- a/lib/librte_power/meson.build +++ b/lib/librte_power/meson.build @@ -10,5 +10,6 @@ sources = files('rte_power.c', 'power_acpi_cpufreq.c', 'rte_power_empty_poll.c', 'power_pstate_cpufreq.c', 'power_common.c') -headers = files('rte_power.h','rte_power_empty_poll.h') +headers = files('rte_power.h','rte_power_empty_poll.h', + 'rte_power_guest_channel.h') deps += ['timer']