view src/pathdef.sh @ 27711:6fdafb9cb90e

Added tag v8.2.4381 for changeset 5f8a4fece0ca153e3aee80bc1e3c3f8fa27c2ed1
author Bram Moolenaar <Bram@vim.org>
date Mon, 14 Feb 2022 17:00: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: