view src/pathdef.sh @ 13902:4232470eb116 v8.0.1822

patch 8.0.1822: make uninstall does not remove colors/tools commit https://github.com/vim/vim/commit/ee62f9fa748ea528eb2a06b3e22ef9a5aecb7cca Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 12 21:05:45 2018 +0200 patch 8.0.1822: make uninstall does not remove colors/tools Problem: Make uninstall does not remove colors/tools. Solution: Add a line to delete the tools directory. (Kazunobu Kuriyama)
author Christian Brabandt <cb@256bit.org>
date Sat, 12 May 2018 21: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: