mirror of
https://git.freebsd.org/ports.git
synced 2025-05-28 00:46:27 -04:00
PR: 229739 Submitted by: greg at unrelenting dot technology Approved by: portmgr (tier-2 blanket)
13 lines
261 B
Text
13 lines
261 B
Text
--- configure.orig 2018-07-15 19:01:39 UTC
|
|
+++ configure
|
|
@@ -512,6 +512,10 @@ pathsearch()
|
|
what=$1
|
|
oldFS="$IFS"
|
|
IFS=":"
|
|
+ if test -x "$what" ; then
|
|
+ echo "$what";
|
|
+ return
|
|
+ fi
|
|
for d in $PATH ; do
|
|
if test -x "$d/$what" ; then
|
|
echo "$d/$what";
|