svn commit: r283592 - user/gjb/thermite

Glen Barber gjb at FreeBSD.org
Tue May 26 21:53:05 UTC 2015


Author: gjb
Date: Tue May 26 21:53:04 2015
New Revision: 283592
URL: https://svnweb.freebsd.org/changeset/base/283592

Log:
  Fix a variable name: s/build/_build/.
  Unset _build and _conf before returning from ftp_stage().
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  user/gjb/thermite/thermite.sh

Modified: user/gjb/thermite/thermite.sh
==============================================================================
--- user/gjb/thermite/thermite.sh	Tue May 26 21:52:57 2015	(r283591)
+++ user/gjb/thermite/thermite.sh	Tue May 26 21:53:04 2015	(r283592)
@@ -249,7 +249,7 @@ ftp_stage() {
 	source_config || return 0
 
 	load_stage_env
-	info "Staging for ftp: ${build}"
+	info "Staging for ftp: ${_build}"
 	[ ! -z "${EMBEDDEDBUILD}" ] && export EMBEDDEDBUILD
 	[ ! -z "${BOARDNAME}" ] && export BOARDNAME
 	[ -e "${scriptdir}/svnrev_src" ] && \
@@ -263,6 +263,7 @@ ftp_stage() {
 		ftp-stage >> ${logdir}/${_build}.log 2>&1
 
 	unset BOARDNAME BUILDDATE EMBEDDEDBUILD SVNREVISION
+	unset _build _conf
 	return 0
 }
 


More information about the svn-src-user mailing list