ports/devel/concurrencykit/files/patch-configure
Mark Linimon a1af615aa0 Fix build on aarch64, armv6/7.
PR:		229739
Submitted by:	greg at unrelenting dot technology
Approved by:	portmgr (tier-2 blanket)
2018-11-01 15:08:02 +00:00

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";