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 e42fea0 commit cf3cb19
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 @@ -20,7 +20,7 @@ while :; do $SUDO makepkg -o --skippgpcheck && break || sleep 5; done
JOBS=$(getconf _NPROCESSORS_ONLN)
JOBS=$(expr "$JOBS" + "$JOBS")
MAKEFLAGS="-j $JOBS"
$SUDO bash -c "MAKEFLAGS=$MAKEFLAGS makepkg --skippgpcheck"
$SUDO bash -c "MAKEFLAGS=""$MAKEFLAGS"" makepkg --skippgpcheck"

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

0 comments on commit cf3cb19

Please sign in to comment.