view src/pathdef.sh @ 12901:34dc9117795a v8.0.1327

patch 8.0.1327: new proto file missing from distribution commit https://github.com/vim/vim/commit/91ffda9852916004c9f318cd01b2f90751329bad Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 21 13:52:14 2017 +0100 patch 8.0.1327: new proto file missing from distribution Problem: New proto file missing from distribution. Solution: Add it. (closes https://github.com/vim/vim/issues/2355)
author Christian Brabandt <cb@256bit.org>
date Tue, 21 Nov 2017 14: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: