summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHartmut Becker <becker.ismaning@freenet.de>2014-09-01 00:29:19 +0200
committerPaul Smith <psmith@gnu.org>2014-09-07 18:02:10 -0400
commit8e7a28a6a4b33f734048d341a3f45505aecc9962 (patch)
treec62a56a4086583027c7a2b920d6ad7391b3e29b5
parent98de32a681e0adba5983c0154a242128bdb1567e (diff)
downloadgunmake-8e7a28a6a4b33f734048d341a3f45505aecc9962.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 f025122..6aecd80 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 */