<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- exec-wrapper.in.orig	2009-05-24 22:03:21.000000000 -0500
+++ exec-wrapper.in	2010-02-10 18:03:13.000000000 -0600
@@ -152,7 +152,7 @@
 # $1 - name.
 checkUtil()
 {
-	which "${1}" &gt;/dev/null 2&gt;&amp;1 || die "\"${1}\" not available"
+	[ -x "$( which "${1}" 2&gt;/dev/null )" ] || die "\"${1}\" not available"
 }
 
 # Check required utilities.
</pre></body></html>