view src/pathdef.sh @ 29399:88d62ab596e8 v9.0.0042

patch 9.0.0042: missing change for filetype detection Commit: https://github.com/vim/vim/commit/324478037923feef1eb8a771648e38ade9e5e05a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 5 21:56:39 2022 +0100 patch 9.0.0042: missing change for filetype detection Problem: Missing change for filetype detection. Solution: Include change to detect guile from shebang line.
author Bram Moolenaar <Bram@vim.org>
date Tue, 05 Jul 2022 23:00: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: