view src/pathdef.sh @ 12914:32c51eef574e v8.0.1333

patch 8.0.1333: some tests are run twice commit https://github.com/vim/vim/commit/2c997d76034d5294c92305108357daef6feabd95 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 23 22:52:09 2017 +0100 patch 8.0.1333: some tests are run twice Problem: Some tests are run twice. Solution: Invoked most utf8 tests only from test_alot_utf8. (Yegappan Lakshmanan, closes #2369)
author Christian Brabandt <cb@256bit.org>
date Thu, 23 Nov 2017 23:00:06 +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: