view src/which.sh @ 20027:23a4aef4f923 v8.2.0569

patch 8.2.0569: build failure with tiny version Commit: https://github.com/vim/vim/commit/fbda69b309ca1c9748eaac38ab85b9e3425bf834 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 13 15:06:53 2020 +0200 patch 8.2.0569: build failure with tiny version Problem: Build failure with tiny version. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Mon, 13 Apr 2020 15:15:04 +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