view src/pathdef.sh @ 31684:8153d73088f2 v9.0.1174

patch 9.0.1174: smali files are not recognized Commit: https://github.com/vim/vim/commit/9a9432d3a223f7fbd902a0346030422ae0a97f0e Author: Amaan Q <amaanq12@gmail.com> Date: Tue Jan 10 19:58:35 2023 +0000 patch 9.0.1174: smali files are not recognized Problem: Smali files are not recognized. Solution: Add a pattern for Smali files. (Amaan Qureshi, closes https://github.com/vim/vim/issues/11801)
author Bram Moolenaar <Bram@vim.org>
date Tue, 10 Jan 2023 21:00:04 +0100
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: