From 7f26779d6fffa0bed8a67e9b44a881afddfe6a16 Mon Sep 17 00:00:00 2001 From: Tom Gillespie Date: Thu, 23 Jun 2022 19:40:47 -0400 Subject: [PATCH] Make build process quota overridable (#430) P had the same assignment as F. This is now fixed so that it is possible to increase RLIMIT_NPROC (e.g. when trying to build on system accounts with more than 1024 processes running). --- tool/build/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/build/compile.c b/tool/build/compile.c index 85cdd1cc7..ee0893ac0 100644 --- a/tool/build/compile.c +++ b/tool/build/compile.c @@ -777,7 +777,7 @@ int main(int argc, char *argv[]) { ccversion = atoi(optarg); break; case 'P': - fszquota = sizetol(optarg, 1000); + proquota = sizetol(optarg, 1024); break; case 'F': fszquota = sizetol(optarg, 1000);