diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Config/defs.mk.in | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 2cc64e711..cbb3a3d00 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-01-15 Barton E. Schaefer <schaefer@zsh.org> + + * 23107, 23109: Config/defs.mk.in: suppress parallel makes. + 2007-01-14 Peter Stephenson <p.w.stephenson@ntlworld.com> * 23104: Src/exec.c, Src/zsh.h: fix line numbering in @@ -407,7 +411,7 @@ * unposted: Doc/Zsh/metafaq.yo, Etc/FAQ.yo: archive.progeny.com mirror site is being decommissioned. Remove from lists -2006-10-15 Barton E. Schaefer <schaefer@brasslantern.com> +2006-10-15 Barton E. Schaefer <schaefer@zsh.org> * unposted: Functions/Misc/colors: add several comments about other ANSI terminal attributes, cribbed from ECMA-48. diff --git a/Config/defs.mk.in b/Config/defs.mk.in index 613c502cd..bfa96edf7 100644 --- a/Config/defs.mk.in +++ b/Config/defs.mk.in @@ -98,3 +98,9 @@ FUNCTIONS_INSTALL='$(FUNCTIONS_INSTALL)' tzsh='$(tzsh)' # override built-in suffix list .SUFFIXES: + +# parallel build is not supported (pmake, gmake) +.NOTPARALLEL: + +# parallel build is not supported (dmake) +.NO_PARALLEL: |