From 62017cc5a39a0298a3227ebb6182fd83f28b5e22 Mon Sep 17 00:00:00 2001 From: Ruslan Kiianchuk Date: Sat, 7 Nov 2015 19:02:08 -0800 Subject: Use `command -v` for obtaining executable path. Seems like `command -v` is defined by POSIX and therefore should be compatible with all POSIX OSes. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 83818bf1..8b99b2ae 100755 --- a/configure +++ b/configure @@ -71,7 +71,7 @@ EOF # Helper functions find_program() { - which "$1" 2>/dev/null + command -v "$1" 2>/dev/null } die() { -- cgit v1.2.3-55-g6feb