View | Details | Raw Unified | Return to bug 229739 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-3 lines)
Lines 15-23 Link Here
15
LICENSE_FILE=	${WRKSRC}/LICENSE
15
LICENSE_FILE=	${WRKSRC}/LICENSE
16
16
17
ONLY_FOR_ARCHS=	aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 sparc64
17
ONLY_FOR_ARCHS=	aarch64 amd64 armv6 armv7 i386 powerpc powerpc64 sparc64
18
BROKEN_aarch64=		fails to configure: Detecting machine architecture...failed  [unsupported]
19
BROKEN_armv6=		fails to configure: Finding suitable compiler........failed  [not found]
20
BROKEN_armv7=		fails to configure: Finding suitable compiler........failed  [not found]
21
BROKEN_powerpc64=	fails to link: skipping incompatible /usr/lib/libgcc.a when searching for -lgcc
18
BROKEN_powerpc64=	fails to link: skipping incompatible /usr/lib/libgcc.a when searching for -lgcc
22
19
23
OPTIONS_DEFINE=		RTM VMAPACK
20
OPTIONS_DEFINE=		RTM VMAPACK
(-)files/patch-configure (+13 lines)
Line 0 Link Here
1
--- configure.orig	2018-07-15 19:01:39 UTC
2
+++ configure
3
@@ -512,6 +512,10 @@ pathsearch()
4
 	what=$1
5
 	oldFS="$IFS"
6
 	IFS=":"
7
+	if test -x "$what" ; then
8
+		echo "$what";
9
+		return
10
+	fi
11
 	for d in $PATH ; do
12
 		if test -x "$d/$what" ; then
13
 			echo "$d/$what";

Return to bug 229739