view src/pathdef.sh @ 29898:3276298c67c5 v9.0.0287

patch 9.0.0287: Irix systems no longer exist Commit: https://github.com/vim/vim/commit/aebc6ef7cdc5d4d0627a711ff66e6fe8d67f9d87 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sat Aug 27 21:24:26 2022 +0100 patch 9.0.0287: Irix systems no longer exist Problem: Irix systems no longer exist. Solution: Remove references to Irix. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/10994)
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Aug 2022 22: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: