svn commit: r471268 - head/Mk/Scripts

Mathieu Arnold mat at FreeBSD.org
Fri Jun 1 16:20:41 UTC 2018


Author: mat
Date: Fri Jun  1 16:20:36 2018
New Revision: 471268
URL: https://svnweb.freebsd.org/changeset/ports/471268

Log:
  SC2034: <some var> appears unused. Verify it or export it.
  
  Variables not used for anything are often associated with bugs, so
  ShellCheck warns about them.
  
  PR:		227109
  Submitted by:	mat
  Sponsored by:	Absolight

Modified:
  head/Mk/Scripts/functions.sh   (contents, props changed)

Modified: head/Mk/Scripts/functions.sh
==============================================================================
--- head/Mk/Scripts/functions.sh	Fri Jun  1 16:20:33 2018	(r471267)
+++ head/Mk/Scripts/functions.sh	Fri Jun  1 16:20:36 2018	(r471268)
@@ -160,7 +160,7 @@ validate_env() {
 }
 
 export_ports_env() {
-	local export_vars make_cmd make_env var results value uses
+	local export_vars make_cmd make_env var value uses
 
 	if [ -n "${HAVE_PORTS_ENV:-}" ]; then
 		return 0


More information about the svn-ports-all mailing list