view src/pathdef.sh @ 16407:cbb6e28af4cb v8.1.1208

patch 8.1.1208: links to repository use wrong file name commit https://github.com/vim/vim/commit/c8cc0ad477c1921afb11080fb96c764369cf04b8 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 26 21:31:38 2019 +0200 patch 8.1.1208: links to repository use wrong file name Problem: Links to repository use wrong file name. Solution: Swap the file names. (Nahuel Ourthe, closes https://github.com/vim/vim/issues/4304)
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Apr 2019 21:45:07 +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: