Skip to content

Commit

Permalink
Set MAKEFLAGS in archlinux and manjarolinux
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Mar 9, 2024
1 parent c091072 commit 3c259ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion archlinux/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ $SUDO git config --global http.postBuffer 524288000
while :; do $SUDO makepkg -o --skippgpcheck && break || sleep 5; done

# `makepkg` in `$BUILD_DIR/linux`
$SUDO makepkg --skippgpcheck
JOBS=$(getconf _NPROCESSORS_ONLN)
JOBS=$(expr "$JOBS" + "$JOBS")
$SUDO MAKEFLAGS="-j$JOBS" makepkg --skippgpcheck

cd $BUILD_DIR
mv linux/src/archlinux-linux/Documentation/output ../htmldocs
Expand Down
4 changes: 3 additions & 1 deletion manjarolinux/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ $SUDO git config --global http.postBuffer 524288000
while :; do $SUDO makepkg -o --skippgpcheck && break || sleep 5; done

# `makepkg` in `$BUILD_DIR/linux`
$SUDO makepkg --skippgpcheck
JOBS=$(getconf _NPROCESSORS_ONLN)
JOBS=$(expr "$JOBS" + "$JOBS")
$SUDO MAKEFLAGS="-j$JOBS" makepkg --skippgpcheck

cd $BUILD_DIR
mv linux/src/archlinux-linux/Documentation/output ../htmldocs
Expand Down

0 comments on commit 3c259ca

Please sign in to comment.