diff options
author | Paolo Bonzini | 2015-03-12 16:00:05 +0100 |
---|---|---|
committer | Paolo Bonzini | 2015-03-18 12:07:25 +0100 |
commit | 15564d85afaf1d7b314c858a5a34bda599f4cd14 (patch) | |
tree | 90f24f3922a1343e0ddc00309bd30e0e4c02b52a /Makefile | |
parent | coroutine-io: Return -errno in case of error (diff) | |
download | qemu-15564d85afaf1d7b314c858a5a34bda599f4cd14.tar.gz qemu-15564d85afaf1d7b314c858a5a34bda599f4cd14.tar.xz qemu-15564d85afaf1d7b314c858a5a34bda599f4cd14.zip |
build: pass .d file name to scripts/make_device_config.sh, fix makefile target
The .d file name must match exactly what is used in the SUBDIR_DEVICES_MAK_DEP
variable. Instead of making assumptions in the make_device_config.sh script,
just pass it in.
Similarly, the makefile target may not match the output file name, because
Makefile uses a temporary file. Instead of making assumptions on what the
Makefile does, emit the config-devices.mak file to stdout, and use the
passed-in destination as the makefile target
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Cc: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -112,7 +112,8 @@ endif -include $(SUBDIR_DEVICES_MAK_DEP) %/config-devices.mak: default-configs/%.mak - $(call quiet-command,$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $@.tmp $<, " GEN $@.tmp") + $(call quiet-command, \ + $(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< $*-config-devices.mak.d $@ > $@.tmp, " GEN $@.tmp") $(call quiet-command, if test -f $@; then \ if cmp -s $@.old $@; then \ mv $@.tmp $@; \ |