On 05/03/2019 10.32, Peter Maydell wrote: > On Mon, 4 Mar 2019 at 19:25, Paolo Bonzini <pbonz...@redhat.com> wrote: >> >> The following changes since commit 1ba530a4ecba6015d52d8f392fd327cfa07bc37a: >> >> Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20190304' into >> staging (2019-03-04 13:38:54 +0000) >> >> are available in the git repository at: >> >> >> git://github.com/bonzini/qemu.git tags/for-upstream-kconfig >> >> for you to fetch changes up to b1d8b9a6cc37e33dde1873379174de78957830ca: >> >> kconfig: add documentation (2019-03-04 19:09:35 +0100) >> >> ---------------------------------------------------------------- >> Initial Kconfig work, excluding ARM and MIPS > > Everything fails to build with errors like > make: *** No rule to make target `config-all-devices.mak', needed by > `subdir-aarch64-softmmu'. Stop. > > or > make: *** No rule to make target > `/home/pm215/qemu/default-configs/pci.mak', needed by > `aarch64-softmmu/config-devices.mak'. Stop. > > If there are special instructions for what to do with > build trees over the transition to kconfig, the pullreq > cover letter would be a good place to mention them :-)
I think you've got to do a "make distclean" inbetween... that's the old problem when a default-configs/*.mak file gets added or erased - we do not properly re-generate the dependencies in that case. Thomas