view src/pathdef.sh @ 22868:f3cbb41b6370 v8.2.1981

patch 8.2.1981: MinGW: parallel compilation might fail Commit: https://github.com/vim/vim/commit/8496c9eadbf4ea3bf69e2e01456831eee2bddf0a Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 13 17:47:33 2020 +0100 patch 8.2.1981: MinGW: parallel compilation might fail Problem: MinGW: parallel compilation might fail. Solution: Add dependencies on $(OUTDIR). (Masamichi Abe, closes https://github.com/vim/vim/issues/7287)
author Bram Moolenaar <Bram@vim.org>
date Fri, 13 Nov 2020 18:00: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: