diff mbox

tools/kvm: fix top level makefile

Message ID 20170411153435.3613-1-jforbes@fedoraproject.org (mailing list archive)
State New, archived
Headers show

Commit Message

Justin Forbes April 11, 2017, 3:34 p.m. UTC
The top level tools/Makefile includes kvm_stat as a target in help, but
the actual target is missing.

Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
---
 tools/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Comments

Paolo Bonzini May 2, 2017, 2:04 p.m. UTC | #1
On 11/04/2017 17:34, Justin M. Forbes wrote:
> The top level tools/Makefile includes kvm_stat as a target in help, but
> the actual target is missing.
> 
> Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
> ---
>  tools/Makefile | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/tools/Makefile b/tools/Makefile
> index 00caacd..c8a90d0 100644
> --- a/tools/Makefile
> +++ b/tools/Makefile
> @@ -86,10 +86,13 @@ tmon: FORCE
>  freefall: FORCE
>  	$(call descend,laptop/$@)
> 
> +kvm_stat: FORCE
> +	$(call descend,kvm/$@)
> +
>  all: acpi cgroup cpupower gpio hv firewire lguest \
>  		perf selftests turbostat usb \
>  		virtio vm net x86_energy_perf_policy \
> -		tmon freefall objtool
> +		tmon freefall objtool kvm_stat
> 
>  acpi_install:
>  	$(call descend,power/$(@:_install=),install)
> 

Applied, thanks.

Paolo
diff mbox

Patch

diff --git a/tools/Makefile b/tools/Makefile
index 00caacd..c8a90d0 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -86,10 +86,13 @@  tmon: FORCE
 freefall: FORCE
 	$(call descend,laptop/$@)

+kvm_stat: FORCE
+	$(call descend,kvm/$@)
+
 all: acpi cgroup cpupower gpio hv firewire lguest \
 		perf selftests turbostat usb \
 		virtio vm net x86_energy_perf_policy \
-		tmon freefall objtool
+		tmon freefall objtool kvm_stat

 acpi_install:
 	$(call descend,power/$(@:_install=),install)