view src/pathdef.sh @ 24901:fd6e5c816654 v8.2.2988

patch 8.2.2988: Vim9: debugger test fails Commit: https://github.com/vim/vim/commit/c3a27bbd53a4653c2d8122a047a4cf2cfc52ed21 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jun 13 15:16:01 2021 +0200 patch 8.2.2988: Vim9: debugger test fails Problem: Vim9: debugger test fails. Solution: Get the debugger instructions when needed.
author Bram Moolenaar <Bram@vim.org>
date Sun, 13 Jun 2021 15:30:02 +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: