view src/pathdef.sh @ 13006:035f78f42953 v8.0.1379

patch 8.0.1379: configure check for selinux does not check for header file commit https://github.com/vim/vim/commit/e4b78e2a42e9030348770764c478b73caa925539 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 7 22:29:11 2017 +0100 patch 8.0.1379: configure check for selinux does not check for header file Problem: Configure check for selinux does not check for header file. Solution: Add an AC_CHECK_HEADER(). (Benny Siegert)
author Christian Brabandt <cb@256bit.org>
date Thu, 07 Dec 2017 22:30:07 +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: