summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHartmut Becker <becker.ismaning@freenet.de>2014-09-07 18:02:10 -0400
committerPaul Smith <psmith@gnu.org>2014-09-07 18:02:10 -0400
commitad9fd1f66d30a2134141c1c88dbb1404a50b1904 (patch)
treec62a56a4086583027c7a2b920d6ad7391b3e29b5
parentea8fbbb659feb34bf31555385e70c403fc17d7ef (diff)
downloadmake-ad9fd1f66d30a2134141c1c88dbb1404a50b1904.tar.gz
* main.c [VMS]: Say that parallel jobs (-j) are not supported on VMS
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index f0251222..6aecd803 100644
--- a/main.c
+++ b/main.c
@@ -1951,7 +1951,7 @@ main (int argc, char **argv, char **envp)
undefine_default_variables ();
}
-#if defined (__MSDOS__) || defined (__EMX__)
+#if defined (__MSDOS__) || defined (__EMX__) || defined (VMS)
if (job_slots != 1
# ifdef __EMX__
&& _osmode != OS2_MODE /* turn off -j if we are in DOS mode */