view src/pathdef.sh @ 22159:4b5f7869b8c0 v8.2.1629

patch 8.2.1629: test fails without terminal feature Commit: https://github.com/vim/vim/commit/63969ef07e99502744114717cb7d63bd4c6e7eae Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 6 20:06:59 2020 +0200 patch 8.2.1629: test fails without terminal feature Problem: Test fails without terminal feature. Solution: Check for terminal feature.
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Sep 2020 20:15:03 +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: