view src/pathdef.sh @ 28039:0362ab7c1a02 v8.2.4544

patch 8.2.4544: Coverity warnings for not using returned value Commit: https://github.com/vim/vim/commit/dbf8094b17781ab1db191cf690e59c79f508a50f Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 11 14:54:03 2022 +0000 patch 8.2.4544: Coverity warnings for not using returned value Problem: Coverity warnings for not using returned value. Solution: Assign to vim_ignored.
author Bram Moolenaar <Bram@vim.org>
date Fri, 11 Mar 2022 16:00:03 +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: