view src/pathdef.sh @ 25723:b079bdc99c18 v8.2.3397

patch 8.2.3397: no test for what 8.2.3391 fixes Commit: https://github.com/vim/vim/commit/03d257998b6343fc91f9dfd5ffc92eebe98d4d24 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Thu Sep 2 20:05:26 2021 +0200 patch 8.2.3397: no test for what 8.2.3391 fixes Problem: No test for what 8.2.3391 fixes. Solution: Add a test. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/8828)
author Bram Moolenaar <Bram@vim.org>
date Thu, 02 Sep 2021 20:15: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: