Skip to content

Commit

Permalink
Arch Linux: Fix MAKEFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Jul 11, 2023
1 parent 45e7c81 commit e42fea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archlinux/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ while :; do $SUDO makepkg -o --skippgpcheck && break || sleep 5; done
# `makepkg` in `$BUILD_DIR/linux`
JOBS=$(getconf _NPROCESSORS_ONLN)
JOBS=$(expr "$JOBS" + "$JOBS")
MAKEFLAGS="-j$(JOBS)"
MAKEFLAGS="-j $JOBS"
$SUDO bash -c "MAKEFLAGS=$MAKEFLAGS makepkg --skippgpcheck"

cd $BUILD_DIR
Expand Down

0 comments on commit e42fea0

Please sign in to comment.