view src/pathdef.sh @ 29031:fc57c55a63a4

Added tag v8.2.5037 for changeset f79cff615e694f9c937066077d422059f4c21ed2
author Bram Moolenaar <Bram@vim.org>
date Sat, 28 May 2022 15:30:04 +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: