view src/pathdef.sh @ 34605:6d3a5ef458cd v9.1.0194

patch 9.1.0194: gcc complains about uninitialized var Commit: https://github.com/vim/vim/commit/9eb236f455df75af858a37a3d98f190c977deaf4 Author: Christian Brabandt <cb@256bit.org> Date: Thu Mar 21 20:12:59 2024 +0100 patch 9.1.0194: gcc complains about uninitialized var Problem: gcc complains about uninitialized var (Tony Mechelynck) Solution: initialize to NULL Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Thu, 21 Mar 2024 20:15:02 +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: