view src/pathdef.sh @ 30312:84ab2b07d5f8 v9.0.0492

patch 9.0.0492: cmdwin test fails on MS-Windows Commit: https://github.com/vim/vim/commit/312af65d1ac763c060cb5adfcf8ae5beeec97f59 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 17 21:20:42 2022 +0100 patch 9.0.0492: cmdwin test fails on MS-Windows Problem: Cmdwin test fails on MS-Windows. Solution: Skip test on MS-Windows.
author Bram Moolenaar <Bram@vim.org>
date Sat, 17 Sep 2022 22: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: