mirror of
https://github.com/mirror/make.git
synced 2025-01-03 00:40:34 +08:00
Formerly job.c.~91~
This commit is contained in:
parent
b758dc3f8b
commit
2370f79846
5
job.c
5
job.c
@ -28,6 +28,11 @@ static char default_path[] = ":/bin:/usr/bin";
|
||||
/* Default shell to use. */
|
||||
char default_shell[] = "/bin/sh";
|
||||
|
||||
/* If NGROUPS_MAX == 0 then try other methods for finding a real value. */
|
||||
#if defined (NGROUPS_MAX) && NGROUPS_MAX == 0
|
||||
#undef NGROUPS_MAX
|
||||
#endif /* NGROUPS_MAX == 0 */
|
||||
|
||||
#ifndef NGROUPS_MAX
|
||||
#ifdef POSIX
|
||||
#define GET_NGROUPS_MAX sysconf (_SC_NGROUPS_MAX)
|
||||
|
Loading…
Reference in New Issue
Block a user