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
This commit is contained in:
Devin Teske 2014-06-20 17:40:38 +00:00
parent 6b22f423cf
commit c7136fd54f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=267680

View File

@ -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"' \