view src/pathdef.sh @ 27529:3f7e59eac8f4 v8.2.4292

patch 8.2.4292: test fails Commit: https://github.com/vim/vim/commit/02a977ea5ee733412011a7f259a4efa0ffc95f1a Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 3 21:29:39 2022 +0000 patch 8.2.4292: test fails Problem: Test fails. Solution: Adjust the expected error number.
author Bram Moolenaar <Bram@vim.org>
date Thu, 03 Feb 2022 22:30: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: