diff options
author | Laurent Vivier | 2020-03-25 08:57:57 +0100 |
---|---|---|
committer | Laurent Vivier | 2020-03-26 08:08:10 +0100 |
commit | 91e5998f185ce0f4d6e0fb40bb0721466009d620 (patch) | |
tree | 95eff5d23b7d1668f2c749b2cd223c59b4a5aa44 /configure | |
parent | Update version for v5.0.0-rc0 release (diff) | |
download | qemu-91e5998f185ce0f4d6e0fb40bb0721466009d620.tar.gz qemu-91e5998f185ce0f4d6e0fb40bb0721466009d620.tar.xz qemu-91e5998f185ce0f4d6e0fb40bb0721466009d620.zip |
linux-user, configure: fix (again) syscall_nr.h dependencies cleanup
This patch fixes two problems:
- it cleanups linux-user variants (for instance ppc64-linux-user
and ppc64le-linux-user)
- it removes the .o file when it removes the .d file, otherwise the .o
file is never updated
Fixes: 5f29856b852d ("linux-user, configure: improve syscall_nr.h dependencies checking")
Fixes: 4d6a835dea47 ("linux-user: introduce parameters to generate syscall_nr.h")
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200325075757.1959961-1-laurent@vivier.eu>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1910,9 +1910,11 @@ for arch in alpha hppa m68k xtensa sh4 microblaze arm ppc s390x sparc sparc64 \ # remove the file if it has been generated in the source directory rm -f "${source_path}/linux-user/${arch}/syscall_nr.h" # remove the dependency files - test -d ${arch}-linux-user && find ${arch}-linux-user -type f -name "*.d" \ - -exec grep -q "${source_path}/linux-user/${arch}/syscall_nr.h" {} \; \ - -exec rm {} \; + for target in ${arch}*-linux-user ; do + test -d "${target}" && find "${target}" -type f -name "*.d" \ + -exec grep -q "${source_path}/linux-user/${arch}/syscall_nr.h" {} \; \ + -print | while read file ; do rm "${file}" "${file%.d}.o" ; done + done done if test -z "$python" |