From mboxrd@z Thu Jan 1 00:00:00 1970 From: Asias He Subject: [PATCH 1/2] kvm tools: Remove lkvm alias vm in 'make clean' Date: Wed, 21 Dec 2011 16:07:21 +0800 Message-ID: <1324454842-28139-1-git-send-email-asias.hejun@gmail.com> Cc: Sasha Levin , Cyrill Gorcunov , Ingo Molnar , kvm@vger.kernel.org, Asias He To: Pekka Enberg Return-path: Received: from mail-iy0-f174.google.com ([209.85.210.174]:57253 "EHLO mail-iy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751585Ab1LUIJR (ORCPT ); Wed, 21 Dec 2011 03:09:17 -0500 Received: by iaeh11 with SMTP id h11so11529393iae.19 for ; Wed, 21 Dec 2011 00:09:16 -0800 (PST) Sender: kvm-owner@vger.kernel.org List-ID: lkvm alias vm is not removed in 'make clean'. This patch fixes this. Signed-off-by: Asias He --- tools/kvm/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/kvm/Makefile b/tools/kvm/Makefile index ce3df65..d54fa47 100644 --- a/tools/kvm/Makefile +++ b/tools/kvm/Makefile @@ -325,7 +325,7 @@ clean: $(Q) rm -f x86/bios/bios-rom.h $(Q) rm -f tests/boot/boot_test.iso $(Q) rm -rf tests/boot/rootfs/ - $(Q) rm -f $(DEPS) $(OBJS) $(PROGRAM) $(GUEST_INIT) $(GUEST_INIT_S2) + $(Q) rm -f $(DEPS) $(OBJS) $(PROGRAM) $(PROGRAM_ALIAS) $(GUEST_INIT) $(GUEST_INIT_S2) $(Q) rm -f cscope.* $(Q) rm -f $(KVM_INCLUDE)/common-cmds.h $(Q) rm -f KVMTOOLS-VERSION-FILE -- 1.7.7.3