diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-10-31 21:40:22 +0200 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-11-07 21:23:53 +0200 | 
| commit | 54757dc1795c5fca93bed9a850be77baa36ff408 (patch) | |
| tree | aec10632bdf7ee2d9fcc008ae46d1b5938dd98da | |
| parent | 0096b066f9c53f1760e30df2ded2736692baaa01 (diff) | |
docker: Reuse all possible cores when building FRR for Alpine
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
| -rw-r--r-- | alpine/APKBUILD.in | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/alpine/APKBUILD.in b/alpine/APKBUILD.in index 51986de2dd..34d678c9a8 100644 --- a/alpine/APKBUILD.in +++ b/alpine/APKBUILD.in @@ -47,7 +47,7 @@ build() {  		--enable-vty-group=frrvty \  		--enable-user=$_user \  		--enable-group=$_user -	make +	make -j $(nproc)  }  check() {  | 
