svn commit: r268171 - stable/9/usr.sbin/bsdconfig/share/packages
Devin Teske
dteske at FreeBSD.org
Wed Jul 2 19:25:50 UTC 2014
Author: dteske
Date: Wed Jul 2 19:25:49 2014
New Revision: 268171
URL: http://svnweb.freebsd.org/changeset/base/268171
Log:
MFC r267680:
Fix a code typo that prevented mkdir from firing (unnoticed
usually because another part of the code succeeded in making
the same directory).
Modified:
stable/9/usr.sbin/bsdconfig/share/packages/index.subr
Directory Properties:
stable/9/usr.sbin/bsdconfig/ (props changed)
Modified: stable/9/usr.sbin/bsdconfig/share/packages/index.subr
==============================================================================
--- stable/9/usr.sbin/bsdconfig/share/packages/index.subr Wed Jul 2 19:25:25 2014 (r268170)
+++ stable/9/usr.sbin/bsdconfig/share/packages/index.subr Wed Jul 2 19:25:49 2014 (r268171)
@@ -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-stable-9
mailing list