Most distributions use an executable name of qemu-kvm for kvm's qemu version. This is mostly because Qemu was there before and there usually is a package with a binary called qemu-system-x86_64 already. In order to not confuse people why distributions do things so differently from upstream, let's call the binary qemu-kvm in make install, so it's always qemu-kvm. Inspired by Anthony. Signed-off-by: Alexander Graf <agraf@xxxxxxx> --- qemu/Makefile.target | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/qemu/Makefile.target b/qemu/Makefile.target index 8f69af7..def3e2b 100644 --- a/qemu/Makefile.target +++ b/qemu/Makefile.target @@ -824,9 +824,13 @@ clean: rm -f *.d */*.d tcg/*.o install: all +ifeq ($(PROGS),qemu-system-x86_64) + $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)/qemu-kvm" +else ifneq ($(PROGS),) $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)" endif +endif # Include automatically generated dependency files -include $(wildcard *.d */*.d) -- 1.6.0.2 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html