You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
ac56dcd3a5
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@63630 d073be05-634f-4543-b044-5fe20cf6d1d6
12 lines
337 B
Diff
12 lines
337 B
Diff
--- 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}" >/dev/null 2>&1 || die "\"${1}\" not available"
|
|
+ [ -x "$( which "${1}" 2>/dev/null )" ] || die "\"${1}\" not available"
|
|
}
|
|
|
|
# Check required utilities.
|