view src/pathdef.sh @ 23253:fe74b64d34e4

Added tag v8.2.2172 for changeset 35583da6397e66f36dc2434a6c7bee01fa307977
author Bram Moolenaar <Bram@vim.org>
date Sun, 20 Dec 2020 21:15: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: