From: Andreas Färber Date: Thu, 24 Jan 2013 15:47:55 +0000 (+0100) Subject: make_device_config.sh: Fix target path in generated dependency file X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=23bf49b5eca716aaad073f2b47613434e1515cb5;p=qemu.git make_device_config.sh: Fix target path in generated dependency file config-devices.mak.d is included from Makefile.target, i.e. from inside the *-softmmu/ directory. It included the directory path, so never applied to the actual ./config-devices.mak. Symptoms were spurious build failures due to missing dependency on default-configs/pci.mak. Fix this by using `basename` to strip the directory path. Reported-by: Gerhard Wiesinger Cc: qemu-stable@nongnu.org Signed-off-by: Andreas Färber Signed-off-by: Blue Swirl --- diff --git a/scripts/make_device_config.sh b/scripts/make_device_config.sh index 5d14885dfc..0778fe2a42 100644 --- a/scripts/make_device_config.sh +++ b/scripts/make_device_config.sh @@ -25,4 +25,4 @@ done process_includes $src > $dest cat $src $all_includes | grep -v '^include' > $dest -echo "$1: $all_includes" > $dep +echo "`basename $1`: $all_includes" > $dep