From 2b61c27b1ed01342bbfa9d2cf4a1de18d589b565 Mon Sep 17 00:00:00 2001 From: Tom Gillespie Date: Fri, 17 Jun 2022 18:12:23 -0700 Subject: [PATCH] tool/build/compile.c add proquota -P assignment P had the same assignment as F. This is now fixed so that it is possible to increase the proquota (e.g. when trying to build on systems that already be 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 43229b237..f9c47b237 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);