view src/pathdef.sh @ 27343:477e3f07cab2

Added tag v8.2.4199 for changeset 41a940219183a9197d8d711f58a2575e8429a9d6
author Bram Moolenaar <Bram@vim.org>
date Mon, 24 Jan 2022 12:30: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: