diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2007-01-15 16:36:41 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2007-01-15 16:36:41 +0000 |
commit | 7f6ea229a81ee728befe64d8a97c397fdc3dffb8 (patch) | |
tree | 9674e68478343ce6f87708782e73c62815664b10 /Config | |
parent | 6dbc34b0d464a274f6c760b13c1e568a83e0c3f6 (diff) | |
download | zsh-7f6ea229a81ee728befe64d8a97c397fdc3dffb8.tar.gz zsh-7f6ea229a81ee728befe64d8a97c397fdc3dffb8.tar.xz zsh-7f6ea229a81ee728befe64d8a97c397fdc3dffb8.zip |
23107, 23109: suppress parallel makes.
Diffstat (limited to 'Config')
-rw-r--r-- | Config/defs.mk.in | 6 |
1 files changed, 6 insertions, 0 deletions
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: |