view src/pathdef.sh @ 20150:1e76da634877 v8.2.0630

patch 8.2.0630: "make tags" does not cover Haiku GUI file Commit: https://github.com/vim/vim/commit/7714d7b31f0fc7c717c97abd4a8b5cbb13a3ad31 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 24 21:21:06 2020 +0200 patch 8.2.0630: "make tags" does not cover Haiku GUI file Problem: "make tags" does not cover Haiku GUI file. Solution: Add *.cc files.
author Bram Moolenaar <Bram@vim.org>
date Fri, 24 Apr 2020 21:30: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: