view src/pathdef.sh @ 11293:cb2040d45876 v8.0.0532

patch 8.0.0532: test with long directory name fails on Mac commit https://github.com/vim/vim/commit/c77d6757471fa207520586bbdbc1b30af84cf5c8 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 1 14:13:14 2017 +0200 patch 8.0.0532: test with long directory name fails on Mac Problem: Test with long directory name fails on Mac. Solution: Skip the test on Mac systems.
author Christian Brabandt <cb@256bit.org>
date Sat, 01 Apr 2017 14:15:05 +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: