view src/pathdef.sh @ 8849:9f40a379ff1e v7.4.1712

commit https://github.com/vim/vim/commit/49b27326447d0827c59c6cd201d58f65c1163086 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 5 21:13:00 2016 +0200 patch 7.4.1712 Problem: For plugins in packages, plugin authors need to take care of all dependencies. Solution: When loading "start" packages and for :packloadall, first add all directories to 'runtimepath' before sourcing plugins.
author Christian Brabandt <cb@256bit.org>
date Tue, 05 Apr 2016 21:15: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: