Fix the name of the qemu-system-* executable
Define the target machine architecture in lowercase. The name of the executable qemu-system-* is defined from the build flags and should be in lowercase: ( "qemu-system-" ARCH ), I.e. qemu-system-x86_64 instead of qemu-system-X86_64. Otherwise, the exec call will fail. Signed-off-by: Vasiliy Ulyanov <vulyanov@suse.de> Signed-off-by: Dario Faggioli <dfaggioli@suse.com>
This commit is contained in:
parent
8338135777
commit
11e285df8f
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -15,10 +15,10 @@ RLIMIT_STACK_VAL := 1024
|
|||
endif
|
||||
|
||||
# Get 'uname -m'-like architecture description for target
|
||||
TARGET_ARCH := $(shell $(CC) -dumpmachine | cut -f1 -d- | tr [a-z] [A-Z])
|
||||
TARGET_ARCH := $(shell echo $(TARGET_ARCH) | sed 's/POWERPC/PPC/')
|
||||
TARGET_ARCH := $(shell $(CC) -dumpmachine | cut -f1 -d- | tr [A-Z] [a-z])
|
||||
TARGET_ARCH := $(shell echo $(TARGET_ARCH) | sed 's/powerpc/ppc/')
|
||||
|
||||
AUDIT_ARCH := $(shell echo $(TARGET_ARCH) | sed 's/^ARM.*/ARM/')
|
||||
AUDIT_ARCH := $(shell echo $(TARGET_ARCH) | tr [a-z] [A-Z] | sed 's/^ARM.*/ARM/')
|
||||
AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/I[456]86/I386/')
|
||||
AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/PPC64/PPC/')
|
||||
AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/PPCLE/PPC64LE/')
|
||||
|
@ -90,7 +90,7 @@ docdir ?= $(datarootdir)/doc/passt
|
|||
mandir ?= $(datarootdir)/man
|
||||
man1dir ?= $(mandir)/man1
|
||||
|
||||
ifeq ($(TARGET_ARCH),X86_64)
|
||||
ifeq ($(TARGET_ARCH),x86_64)
|
||||
BIN := passt passt.avx2 pasta pasta.avx2 qrap
|
||||
else
|
||||
BIN := passt pasta qrap
|
||||
|
|
Loading…
Reference in a new issue