svn commit: r365260 - user/gjb/thermite-git

Glen Barber gjb at FreeBSD.org
Wed Sep 2 17:28:20 UTC 2020


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"
 


More information about the svn-src-user mailing list