Skip to content

Commit 1a730db

Browse files
committed
actiona: limit to 2 jobs on 32 bits
1 parent e24f610 commit 1a730db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

srcpkgs/actiona/template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ pre_configure() {
3434
}
3535

3636
pre_build() {
37-
if [ "$XBPS_ORIG_MAKEJOBS" -gt 8 ]; then
38-
export NINJAFLAGS=-j8
37+
if [ "$XBPS_WORDSIZE" = 32 ]; then
38+
export NINJAFLAGS=-j2
3939
else
4040
export NINJAFLAGS="$makejobs"
4141
fi

0 commit comments

Comments
 (0)