view src/which.sh @ 13472:f6a4614edea4 v8.0.1610

patch 8.0.1610: cannot build without GUI commit https://github.com/vim/vim/commit/4ac31eeff0409de0b1fe2d9e9f678859656ac4ae Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 16 21:34:25 2018 +0100 patch 8.0.1610: cannot build without GUI Problem: Cannot build without GUI. Solution: Add #ifdef.
author Christian Brabandt <cb@256bit.org>
date Fri, 16 Mar 2018 21:45:06 +0100
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