svn commit: r267680 - head/usr.sbin/bsdconfig/share/packages

Devin Teske dteske at FreeBSD.org
Fri Jun 20 17:40:39 UTC 2014


Author: dteske
Date: Fri Jun 20 17:40:38 2014
New Revision: 267680
URL: http://svnweb.freebsd.org/changeset/base/267680

Log:
  Fix a code typo that prevented mkdir from firing (unnoticed
  usually because another part of the code succeeded in making
  the same directory).
  
  MFC after:      3 days

Modified:
  head/usr.sbin/bsdconfig/share/packages/index.subr

Modified: head/usr.sbin/bsdconfig/share/packages/index.subr
==============================================================================
--- head/usr.sbin/bsdconfig/share/packages/index.subr	Fri Jun 20 17:14:59 2014	(r267679)
+++ head/usr.sbin/bsdconfig/share/packages/index.subr	Fri Jun 20 17:40:38 2014	(r267680)
@@ -258,7 +258,7 @@ f_index_initialize()
 
 		# Finally, move the temporary file into place
 		case "$PACKAGES_INDEX_CACHEFILE" in
-		*/*) f_eval_catch -d $funcname mkdir \
+		*/*) f_eval_catch -d $__funcname mkdir \
 			'mkdir -p "%s"' "${PACKAGES_INDEX_CACHEFILE%/*}"
 		esac
 		f_eval_catch -d $__funcname mv 'mv -f "%s" "%s"' \


More information about the svn-src-head mailing list