view src/pathdef.sh @ 2066:2bd96108392e v7.2.351

updated for version 7.2.351 Problem: Can't build with some compilers. Solution: Move the #ifdef outside of a macro. Cleanup the code.
author Bram Moolenaar <bram@zimbu.org>
date Thu, 28 Jan 2010 22:58:16 +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: