[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 6/8] configure: Remove old *-config-devices.mak.d fil
From: |
Thomas Huth |
Subject: |
[Qemu-devel] [PULL 6/8] configure: Remove old *-config-devices.mak.d files when running configure |
Date: |
Thu, 2 May 2019 18:13:08 +0200 |
When running "make" in a build directory from the pre-Kconfig merge time,
the build process currently fails with:
make: *** No rule to make target `.../default-configs/pci.mak',
needed by `aarch64-softmmu/config-devices.mak'. Stop.
To make sure that this problem at least goes away when the user runs
"configure" (or "sh config.status") again, we have to make sure that
we re-generate the .mak.d files. Thus remove the old stale files
while running the configure script.
Message-Id: <address@hidden>
Signed-off-by: Thomas Huth <address@hidden>
---
configure | 3 +++
1 file changed, 3 insertions(+)
diff --git a/configure b/configure
index 362bfef637..f14b25c49c 100755
--- a/configure
+++ b/configure
@@ -1818,6 +1818,9 @@ EOF
exit 0
fi
+# Remove old dependency files to make sure that they get properly regenerated
+rm -f *-config-devices.mak.d
+
if ! has $python; then
error_exit "Python not found. Use --python=/path/to/python"
fi
--
2.21.0
- [Qemu-devel] [PULL 0/8] qtest and misc patches, Thomas Huth, 2019/05/02
- [Qemu-devel] [PULL 1/8] gitlab-ci.yml: Test the TCG interpreter in a CI pipeline, Thomas Huth, 2019/05/02
- [Qemu-devel] [PULL 2/8] qtest: Move accel code to accel/qtest.c, Thomas Huth, 2019/05/02
- [Qemu-devel] [PULL 3/8] qtest: Don't compile qtest accel on non-POSIX systems, Thomas Huth, 2019/05/02
- [Qemu-devel] [PULL 4/8] accel: Remove unused AccelClass::available field, Thomas Huth, 2019/05/02
- [Qemu-devel] [PULL 5/8] configure: Add -Wno-typedef-redefinition to CFLAGS (for Clang), Thomas Huth, 2019/05/02
- [Qemu-devel] [PULL 6/8] configure: Remove old *-config-devices.mak.d files when running configure,
Thomas Huth <=
- [Qemu-devel] [PULL 7/8] configure: Relax check for libseccomp, Thomas Huth, 2019/05/02
- [Qemu-devel] [PULL 8/8] hw/pci-host: Use object_initialize_child for correct reference counting, Thomas Huth, 2019/05/02
- Re: [Qemu-devel] [PULL 0/8] qtest and misc patches, Peter Maydell, 2019/05/03