From 31f5989724347b9f68de6b180d812c8b2eaed7cf Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 8 Apr 2006 14:26:32 +0000 Subject: r14995: Avoid parallel builds unless there is support for automatic dependencies. (This used to be commit ff5b02a9f8b9fe556e41b9d14afe3d855e855542) --- source4/build/smb_build/TODO | 2 ++ source4/build/smb_build/makefile.pm | 1 + 2 files changed, 3 insertions(+) diff --git a/source4/build/smb_build/TODO b/source4/build/smb_build/TODO index f02799de5a..a4fcd47bb5 100644 --- a/source4/build/smb_build/TODO +++ b/source4/build/smb_build/TODO @@ -1,5 +1,7 @@ - make --enable-dso the default + - fix module loading for selftest during non-developer builds - per-subsystem CFLAGS (which are inherited) +- clearer distinction between dcerpc and ndr. seperate interface tables? - pregenerate more stuff (IDL, manpages, lex/yacc?) - saner names for: libcli.so.0.0.1 (rename to libsmb?) diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 7b57470f81..e511cbaca2 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -48,6 +48,7 @@ sub new($$$) if (!$self->{automatic_deps}) { $self->output("ALL_PREDEP = proto\n"); + $self->output(".NOTPARALLEL:\n"); } return $self; -- cgit