view src/pathdef.sh @ 18271:b506809f5d38 v8.1.2130

patch 8.1.2130: MSVC build fails Commit: https://github.com/vim/vim/commit/073e779640d089445c7289393db94d1ceb4ddb17 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 10 13:39:08 2019 +0200 patch 8.1.2130: MSVC build fails Problem: MSVC build fails. Solution: Add the source file name explicitly.
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Oct 2019 13:45:04 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

#! /bin/sh
#
# pathdef.sh: adjust pathdef.c for auto/link.sed, if it exists
#
if test -s auto/link.sed; then
  cp auto/pathdef.c auto/pathdef.tmp
  sed -f auto/link.sed <auto/pathdef.tmp >auto/pathdef.c
  rm -f auto/pathdef.tmp
fi

# vim:set sw=2 et: