view src/pathdef.sh @ 23867:6d5df74b995d v8.2.2475

patch 8.2.2475: autocommand tests hangs on MS-Windows Commit: https://github.com/vim/vim/commit/dfc3db76b9de217542cc9258301c1b4818a51cd0 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 6 19:28:48 2021 +0100 patch 8.2.2475: autocommand tests hangs on MS-Windows Problem: Autocommand tests hangs on MS-Windows. Solution: Skip one test.
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Feb 2021 19:30:05 +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: