view src/pathdef.sh @ 10496:bd5bec6291cc v8.0.0141

commit https://github.com/vim/vim/commit/269aec7e615b7710139a69a4c715dfe534aa3a1a Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 2 18:32:39 2017 +0100 patch 8.0.0141 Problem: Nested function test fails on AppVeyor. Solution: Disable the test on Windows for now.
author Christian Brabandt <cb@256bit.org>
date Mon, 02 Jan 2017 18:45:03 +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: