view src/pathdef.sh @ 13472:f6a4614edea4 v8.0.1610

patch 8.0.1610: cannot build without GUI commit https://github.com/vim/vim/commit/4ac31eeff0409de0b1fe2d9e9f678859656ac4ae Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 16 21:34:25 2018 +0100 patch 8.0.1610: cannot build without GUI Problem: Cannot build without GUI. Solution: Add #ifdef.
author Christian Brabandt <cb@256bit.org>
date Fri, 16 Mar 2018 21:45:06 +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: