view src/pathdef.sh @ 19770:4e843fc8772f v8.2.0441

patch 8.2.0441: terminal noblock test is still failing on BSD Commit: https://github.com/vim/vim/commit/f3710ee22d0039cea2f970452b5faf56e89a6ab0 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 24 12:12:30 2020 +0100 patch 8.2.0441: terminal noblock test is still failing on BSD Problem: Terminal noblock test is still failing on BSD. Solution: Reduce the amount of text.
author Bram Moolenaar <Bram@vim.org>
date Tue, 24 Mar 2020 12:15: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: