view src/pathdef.sh @ 21701:6bb806a0238c v8.2.1400

patch 8.2.1400: Vim9: test does not delete written files Commit: https://github.com/vim/vim/commit/730b24833952f0f4a9a17b7815b0d9f87c609eb8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 9 13:02:10 2020 +0200 patch 8.2.1400: Vim9: test does not delete written files Problem: Vim9: test does not delete written files. Solution: Correct file names.
author Bram Moolenaar <Bram@vim.org>
date Sun, 09 Aug 2020 13:15: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: