This function served to support having prebuilt files in the source
tree for vpath builds. This is no longer possible (since
721856ff24); all built files are now always in the build tree. The
invocations of this function are no longer required.
for file in $(call vpathsearch,man1)/*.1;do$(fix_sqlmansectnum)$$file >fixedman/man1/`basename $$file`|| exit;done
for file in $(call vpathsearch,man3)/*.3;do$(fix_sqlmansectnum)$$file >fixedman/man3/`basename $$file`|| exit;done
for file in $(call vpathsearch,man7)/*.7;do$(fix_sqlmansectnum)$$file >fixedman/man$(sqlmansectnum)/`basename $$file | sed s/\.7$$/.$(sqlmansect)/`|| exit;done
for file in man1/*.1;do$(fix_sqlmansectnum)$$file >fixedman/man1/`basename $$file`|| exit;done
for file in man3/*.3;do$(fix_sqlmansectnum)$$file >fixedman/man3/`basename $$file`|| exit;done
for file in man7/*.7;do$(fix_sqlmansectnum)$$file >fixedman/man$(sqlmansectnum)/`basename $$file | sed s/\.7$$/.$(sqlmansect)/`|| exit;done