On 5/14/07, Franck Bui-Huu <vagabon.xyz@xxxxxxxxx> wrote:
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 5aa0f41..04a57f9 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -713,7 +713,7 @@ ifdef CONFIG_MIPS32_O32 $(Q)$(MAKE) $(build)=. missing-syscalls EXTRA_CFLAGS="-mabi=32" endif -archprepare: arch-missing-syscalls +prepare0: arch-missing-syscalls archclean: @$(MAKE) $(clean)=arch/mips/boot
of course with "prepare"1 prerequisite has been removed too: diff --git a/arch/mips/Makefile b/arch/mips/Makefile index 5aa0f41..151a44c 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile @@ -703,7 +703,7 @@ CLEAN_FILES += vmlinux.ecoff \ vmlinux.srec PHONY += arch-missing-syscalls -arch-missing-syscalls: prepare1 +arch-missing-syscalls: ifdef CONFIG_MIPS32_N32 @echo ' Checking missing-syscalls for N32' $(Q)$(MAKE) $(build)=. missing-syscalls EXTRA_CFLAGS="-mabi=n32" @@ -713,7 +713,7 @@ ifdef CONFIG_MIPS32_O32 $(Q)$(MAKE) $(build)=. missing-syscalls EXTRA_CFLAGS="-mabi=32" endif -archprepare: arch-missing-syscalls +prepare0: arch-missing-syscalls archclean: @$(MAKE) $(clean)=arch/mips/boot -- Franck