view src/pathdef.sh @ 23122:60a0221beab0 v8.2.2107

patch 8.2.2107: Vim9: some errors not tested Commit: https://github.com/vim/vim/commit/8ff16e0183e0b07f34c0db8160cf6a472c427eb8 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 7 21:49:52 2020 +0100 patch 8.2.2107: Vim9: some errors not tested Problem: Vim9: some errors not tested. Solution: Add tests. Fix getting the right error.
author Bram Moolenaar <Bram@vim.org>
date Mon, 07 Dec 2020 22:00:04 +0100
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: