On Mon, 14 May 2007 09:55:01 +0200, "Franck Bui-Huu" <vagabon.xyz@xxxxxxxxx> wrote: > > Without that, fresh build will fail because missing-syscalls target > > requires include/asm, etc. > > yes but from top makefile, we already have this depedency: > > $ grep archprepare: Makefile > archprepare: prepare1 scripts_basic Yes, and arch Makefile is included _before_ the line. So "make" will try to build arch-missing-syscalls before prepare1. We must tell "make" to build prepare1 _before_ arch-missing-syscalls. --- Atsushi Nemoto