1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-02 12:20:51 +00:00

Exit with non-zero error code in case of errors

when make is run with -k and not parallel (compat) make is run.
This commit is contained in:
Max Khon 2009-10-18 11:26:09 +00:00
parent 6426657e9f
commit a234abce8e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=198197

View File

@ -3380,6 +3380,8 @@ Compat_Run(Lst *targs)
printf("`%s' not remade because of errors.\n",
gn->name);
makeErrors++;
} else if (gn->made == ERROR) {
makeErrors++;
}
}