Date: Wed, 2 Sep 2020 17:28:20 +0000 (UTC) From: Glen Barber <gjb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r365260 - user/gjb/thermite-git Message-ID: <202009021728.082HSK1s074426@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gjb Date: Wed Sep 2 17:28:19 2020 New Revision: 365260 URL: https://svnweb.freebsd.org/changeset/base/365260 Log: Re-sync with releng repo: - Create the {release,logs,chroots} directories and expand the paths using realpath(1). - Default parallel builds to enabled. Sponsored by: Rubicon Communications, LLC (netgate.com) Modified: user/gjb/thermite-git/main.conf Modified: user/gjb/thermite-git/main.conf ============================================================================== --- user/gjb/thermite-git/main.conf Wed Sep 2 17:26:14 2020 (r365259) +++ user/gjb/thermite-git/main.conf Wed Sep 2 17:28:19 2020 (r365260) @@ -9,14 +9,17 @@ use_zfs=1 emailgoesto= emailsentfrom= -scriptdir="$(dirname $(realpath ${0}))" -srcdir="${scriptdir}/../release" -logdir="${scriptdir}/../logs" -chroots="${scriptdir}/../chroots" +scriptdir="$(dirname $(realpath ${PWD}/thermite.sh))" +mkdir -p ${scriptdir}/../release +mkdir -p ${scriptdir}/../logs +mkdir -p ${scriptdir}/../chroots +srcdir="$(realpath ${scriptdir}/../release)" +logdir="$(realpath ${scriptdir}/../logs)" +chroots="$(realpath ${scriptdir}/../chroots)" ## To build all architectures in parallel, set the 'parallel' variable to ## 'parallel'. Note, this puts extreme CPU load on the machine. -#parallel="parallel" -parallel="" +#parallel="" +parallel="parallel" ftpdir="/snap/ftp"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009021728.082HSK1s074426>