view src/pathdef.sh @ 22268:2eaee3396f7a v8.2.1683

patch 8.2.1683: Vim9: assignment test fails Commit: https://github.com/vim/vim/commit/2b22b113c6aedf2a1295cf7e6f2f2a5d463b3868 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Sep 14 18:35:18 2020 +0200 patch 8.2.1683: Vim9: assignment test fails Problem: Vim9: assignment test fails. Solution: Include changes to find Ex command.
author Bram Moolenaar <Bram@vim.org>
date Mon, 14 Sep 2020 18:45: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: