view src/pathdef.sh @ 22111:ef9ad6556cbc v8.2.1605

patch 8.2.1605: default maintainer on github is wrong Commit: https://github.com/vim/vim/commit/b02628b8a20ad0c42a097207b3b49ae5169d04d7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 5 18:40:44 2020 +0200 patch 8.2.1605: default maintainer on github is wrong Problem: Defyyyyyyyyyyyyyyyyyyyyyyyub is wrong. Solution: Use Bram's account.
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Sep 2020 18:45:04 +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: