view src/which.sh @ 30550:2c169fec56f2 v9.0.0610

patch 9.0.0610: global interrupt test fails when run under valgrind Commit: https://github.com/vim/vim/commit/859ea4bc76699232e41aea0f308463bab887b0c1 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Sep 27 18:05:38 2022 +0100 patch 9.0.0610: global interrupt test fails when run under valgrind Problem: Global interrupt test fails when run under valgrind. Solution: Use TermWait().
author Bram Moolenaar <Bram@vim.org>
date Tue, 27 Sep 2022 19:15:02 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

#! /bin/sh
#
# which.sh -- find where an executable is located.  It's here because the
# "which" command is not supported everywhere.  Used by Makefile.

IFS=":"
for ac_dir in $PATH; do
	if test -f "$ac_dir/$1"; then
		echo "$ac_dir/$1"
		break
	fi
done