view src/pathdef.sh @ 17724:76fba68d1c67 v8.1.1859

patch 8.1.1859: timer test sometimes fails on Mac commit https://github.com/vim/vim/commit/427dddf014fea1326ea7f8c0951b0667dc037409 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 16 21:22:41 2019 +0200 patch 8.1.1859: timer test sometimes fails on Mac Problem: Timer test sometimes fails on Mac. Solution: Show more info when it fails.
author Bram Moolenaar <Bram@vim.org>
date Fri, 16 Aug 2019 21:30: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: