view src/pathdef.sh @ 8025:1f0f08c601b7 v7.4.1307

commit https://github.com/vim/vim/commit/f02c5cffd8cd567d8dfbe4d9e93ec75eb29e7910 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Feb 12 22:25:56 2016 +0100 patch 7.4.1307 Problem: Some channel tests fail on MS-Windows. Solution: Disable the failing tests temporarily.
author Christian Brabandt <cb@256bit.org>
date Fri, 12 Feb 2016 22:30:04 +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: