view src/pathdef.sh @ 26074:676e1735d5dd

Added tag v8.2.3570 for changeset 948550cae1e7a6883533e2e574be15480e8d8c68
author Bram Moolenaar <Bram@vim.org>
date Tue, 02 Nov 2021 00:00:08 +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: