view src/pathdef.sh @ 24412:0e0943dfdbf9 v8.2.2746

patch 8.2.2746: check for duplicate arguments does not work Commit: https://github.com/vim/vim/commit/87795939d01932b0d8155fd69c7494fa51c523f3 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 10 18:21:30 2021 +0200 patch 8.2.2746: check for duplicate arguments does not work Problem: Check for duplicate arguments does not work. Solution: Correct condition.
author Bram Moolenaar <Bram@vim.org>
date Sat, 10 Apr 2021 18:30:04 +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: