mirror of https://github.com/xqemu/xqemu.git
Rename qemu -> qemu-system-i386
This has been discussed before in the past. The special casing really makes no sense anymore. This seems like a good change to make for 1.0. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
12d4536f7d
commit
9aed1e036d
5
Makefile
5
Makefile
|
@ -366,9 +366,8 @@ tar:
|
||||||
rm -rf /tmp/$(FILE)
|
rm -rf /tmp/$(FILE)
|
||||||
|
|
||||||
SYSTEM_TARGETS=$(filter %-softmmu,$(TARGET_DIRS))
|
SYSTEM_TARGETS=$(filter %-softmmu,$(TARGET_DIRS))
|
||||||
SYSTEM_PROGS=$(patsubst qemu-system-i386,qemu, \
|
SYSTEM_PROGS=$(patsubst %-softmmu,qemu-system-%, \
|
||||||
$(patsubst %-softmmu,qemu-system-%, \
|
$(SYSTEM_TARGETS))
|
||||||
$(SYSTEM_TARGETS)))
|
|
||||||
|
|
||||||
USER_TARGETS=$(filter %-user,$(TARGET_DIRS))
|
USER_TARGETS=$(filter %-user,$(TARGET_DIRS))
|
||||||
USER_PROGS=$(patsubst %-bsd-user,qemu-%, \
|
USER_PROGS=$(patsubst %-bsd-user,qemu-%, \
|
||||||
|
|
|
@ -27,12 +27,8 @@ ifdef CONFIG_USER_ONLY
|
||||||
QEMU_PROG=qemu-$(TARGET_ARCH2)
|
QEMU_PROG=qemu-$(TARGET_ARCH2)
|
||||||
else
|
else
|
||||||
# system emulator name
|
# system emulator name
|
||||||
ifeq ($(TARGET_ARCH), i386)
|
|
||||||
QEMU_PROG=qemu$(EXESUF)
|
|
||||||
else
|
|
||||||
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
|
QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
|
||||||
endif
|
endif
|
||||||
endif
|
|
||||||
|
|
||||||
PROGS=$(QEMU_PROG)
|
PROGS=$(QEMU_PROG)
|
||||||
STPFILES=
|
STPFILES=
|
||||||
|
|
Loading…
Reference in New Issue