view src/which.sh @ 10530:ea5adbeccfc1 v8.0.0155

commit https://github.com/vim/vim/commit/a216255a4faa91a15e7005ac319f2f62294f3f9e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 8 17:46:20 2017 +0100 patch 8.0.0155: ubsan complains about NULL pointer Problem: When sorting zero elements a NULL pointer is passed to qsort(), which ubsan warns for. Solution: Don't call qsort() if there are no elements. (Dominique Pelle)
author Christian Brabandt <cb@256bit.org>
date Sun, 08 Jan 2017 18:00:04 +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