mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-23 23:13:38 +00:00
config-all-devices.mak: rebuild on reconfigure
This ensures that softmmu directories are culled after a "./configure --target-list=x86_64-linux-user". Backports commit b7c11e574977a0addfbbdb89377c6f52affe64ec from qemu
This commit is contained in:
parent
54b9701799
commit
b4dd8afa14
1 changed files with 2 additions and 2 deletions
|
@ -70,10 +70,10 @@ SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
|
|||
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS))
|
||||
|
||||
ifeq ($(SUBDIR_DEVICES_MAK),)
|
||||
config-all-devices.mak:
|
||||
config-all-devices.mak: config-host.mak
|
||||
$(call quiet-command,echo '# no devices' > $@," GEN $@")
|
||||
else
|
||||
config-all-devices.mak: $(SUBDIR_DEVICES_MAK)
|
||||
config-all-devices.mak: $(SUBDIR_DEVICES_MAK) config-host.mak
|
||||
$(call quiet-command, sed -n \
|
||||
's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
|
||||
$(SUBDIR_DEVICES_MAK) | sort -u > $@, \
|
||||
|
|
Loading…
Reference in a new issue