view src/pathdef.sh @ 12769:083ae2cfcc5b v8.0.1262

patch 8.0.1262: terminal redir test is flaky commit https://github.com/vim/vim/commit/7dd88c5133feda7e9ccfedcb38b6dfdba459d507 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 4 20:46:40 2017 +0100 patch 8.0.1262: terminal redir test is flaky Problem: Terminal redir test is flaky. Solution: Add it to the list of flaky tests.
author Christian Brabandt <cb@256bit.org>
date Sat, 04 Nov 2017 21:00:05 +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: