Skip to content
Snippets Groups Projects
Commit 36e38426 authored by Paolo Bonzini's avatar Paolo Bonzini
Browse files

tests/tcg: really fix path to target configuration


This was attempted in commit 533b0a1a ("tests/tcg: Fix target-specific
Makefile variables path for user-mode", 2022-01-12) but it also used the
wrong path; default.mak is used for config/devices, not config/targets.

While at it, explain what the inclusion is about.

Cc: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 14b61778
Branches
Tags
No related merge requests found
...@@ -32,8 +32,10 @@ ...@@ -32,8 +32,10 @@
all: all:
-include ../../../config-host.mak -include ../../../config-host.mak
-include ../config-$(TARGET).mak -include ../config-$(TARGET).mak
# Get semihosting definitions for user-mode emulation
ifeq ($(CONFIG_USER_ONLY),y) ifeq ($(CONFIG_USER_ONLY),y)
-include $(SRC_PATH)/configs/targets/$(TARGET)/default.mak -include $(SRC_PATH)/configs/targets/$(TARGET).mak
endif endif
# for including , in command strings # for including , in command strings
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment