view src/pathdef.sh @ 14220:96e4c6b26998 v8.1.0127

patch 8.1.0127: build failure when disabling the session feature commit https://github.com/vim/vim/commit/7c365fb190225d98af818daf195dc19921fe01ca Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 29 20:28:31 2018 +0200 patch 8.1.0127: build failure when disabling the session feature Problem: Build failure when disabling the session feature. (Pawel Slowik) Solution: Adjust #ifdef for vim_chdirfile().
author Christian Brabandt <cb@256bit.org>
date Fri, 29 Jun 2018 20:30:06 +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: