view src/pathdef.sh @ 27575:9f70df0b2967 v8.2.4314

patch 8.2.4314: test fails where lines are skipped Commit: https://github.com/vim/vim/commit/8cbf2499179db39a46e700ab04d0b36e22bcc1bb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 6 20:28:13 2022 +0000 patch 8.2.4314: test fails where lines are skipped Problem: Test fails where lines are skipped. Solution: Only give an error when not skipping commands.
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Feb 2022 21:30:02 +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: