Building the loadable modules depends on files created during the
main build.  However, the Makefile doesn't record any such dependency.
Running for instance "make -j10 all loadables" will fail due to a
lack of enforced sequencing.

A straightforward fix would be to make the "loadables" target depend
on ".made":

--- Makefile.in.orig
+++ Makefile.in
@@ -803,7 +803,7 @@ $(srcdir)/configure:        $(srcdir)/configure.ac 
$(srcdir)/
 reconfig: force
        sh $(srcdir)/configure -C
 
-loadables:
+loadables: .made
        cd $(LOADABLES_DIR) && $(MAKE) $(MFLAGS) all
 
 #newversion:   mkversion
-- 
Christian "naddy" Weisgerber                          na...@mips.inka.de

Reply via email to