Skip to content

Commit

Permalink
Manjaro Linux: Fix MAKEFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Jul 11, 2023
1 parent 1987028 commit d629bee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manjarolinux/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ 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)"
$SUDO bash -c "MAKEFLAGS=$MAKEFLAGS makepkg --skippgpcheck"
MAKEFLAGS="-j $JOBS"
$SUDO bash -c "MAKEFLAGS=""$MAKEFLAGS"" makepkg --skippgpcheck"

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

0 comments on commit d629bee

Please sign in to comment.