view src/pathdef.sh @ 23424:c0880eafe162 v8.2.2255

patch 8.2.2255: Tcl test fails Commit: https://github.com/vim/vim/commit/1779ff48427931736998a6e5621b5cbe4d99c3e3 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 31 18:11:16 2020 +0100 patch 8.2.2255: Tcl test fails Problem: Tcl test fails. Solution: Change option handling.
author Bram Moolenaar <Bram@vim.org>
date Thu, 31 Dec 2020 18:15:03 +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: