view src/pathdef.sh @ 30263:568ec1c3c34b v9.0.0467

patch 9.0.0467: build failure Commit: https://github.com/vim/vim/commit/d3922afbd6f56e82c7b5fd7a7ebc0769e416cae8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 14 22:30:59 2022 +0100 patch 9.0.0467: build failure Problem: Build failure. Solution: Add missing change.
author Bram Moolenaar <Bram@vim.org>
date Wed, 14 Sep 2022 23:45:03 +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: