view src/pathdef.sh @ 17622:ccbf8c2a47ee v8.1.1808

patch 8.1.1808: build failure for tiny version commit https://github.com/vim/vim/commit/e4ce825a55ad2445a212ce30837a3af566b7af6b Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 4 15:30:16 2019 +0200 patch 8.1.1808: build failure for tiny version Problem: Build failure for tiny version. Solution: Define ex_eval to ex_ni. Clean up the ordering a bit.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Aug 2019 15:45:05 +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: