view src/pathdef.sh @ 10036:ab6320d74331 v7.4.2290

commit https://github.com/vim/vim/commit/7f7bd297d6d989254f71c694f1c72d07cbc5c306 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 28 21:21:31 2016 +0200 patch 7.4.2290 Problem: Compiler warning in tiny build. (Tony Mechelynck) Solution: Add #ifdef around infinity_str().
author Christian Brabandt <cb@256bit.org>
date Sun, 28 Aug 2016 21:30:07 +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: