view src/which.sh @ 8960:ea3eb5a815b5 v7.4.1766

commit https://github.com/vim/vim/commit/02cfac85b4e4b038bb2df6962699fa93a42c7eb1 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 21 14:34:58 2016 +0200 patch 7.4.1766 Problem: Building instructions for MS-Windows are outdated. Solution: Mention setting SDK_INCLUDE_DIR. (Ben Franklin, closes https://github.com/vim/vim/issues/771) Move outdated instructions further down.
author Christian Brabandt <cb@256bit.org>
date Thu, 21 Apr 2016 14:45: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