view src/pathdef.sh @ 27964:c31bee906b7a v8.2.4507

patch 8.2.4507: test fails because of new error message Commit: https://github.com/vim/vim/commit/f78ee2b49f0b060c642764a620b4c55ab13af82e Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 4 23:22:27 2022 +0000 patch 8.2.4507: test fails because of new error message Problem: Test fails because of new error message. Solution: Avoid the test fails.
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Mar 2022 00:30:02 +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: