view src/pathdef.sh @ 27126:e64dd0403963 v8.2.4092

patch 8.2.4092: MacOS CI: unnecessarily doing "Install packages" Commit: https://github.com/vim/vim/commit/ece07639f4989a300276d66b13553c21a7435030 Author: ichizok <gclient.gaap@gmail.com> Date: Fri Jan 14 21:28:59 2022 +0000 patch 8.2.4092: MacOS CI: unnecessarily doing "Install packages" Problem: MacOS CI: unnecessarily doing "Install packages". Solution: Only do "Install packages" for huge build. (Ozaki Kiichi, closes #9521)
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Jan 2022 22:30:03 +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: