aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2016-08-29 02:50:24 +0000
committerMark Linimon <linimon@FreeBSD.org>2016-08-29 02:50:24 +0000
commitdb709845763cba339e42491090be1240cf025ae0 (patch)
treee9b8b69d539f31447a427835c1b402cf7c8918f6
parentef62ddf431176887662d30097b47bc2ef81b78ee (diff)
downloadports-db709845763cba339e42491090be1240cf025ae0.tar.gz
ports-db709845763cba339e42491090be1240cf025ae0.zip
Obvious error is obvious.
To brooks: I caught this while investigating a stray error message on sparc64 builds. It has to do with the CONFIGURE_ENV+= CC="/usr/bin/clang" line which should not be executed on tier-2. I do not know of the proper fix yet.
Notes
Notes: svn path=/head/; revision=421041
-rw-r--r--devel/libdispatch/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libdispatch/Makefile b/devel/libdispatch/Makefile
index f89479cef2bb..efdd5bbc85c8 100644
--- a/devel/libdispatch/Makefile
+++ b/devel/libdispatch/Makefile
@@ -85,9 +85,9 @@ CLANG_DESC= Build with LLVM/Clang (required for blocks support)
.endif
.if (${OSVERSION} < 1000706)
-.if ${ARCH} == "powerpc
+.if ${ARCH} == "powerpc"
BROKEN= Does not configure on powerpc-9
-.elif ${ARCH} == "sparc64
+.elif ${ARCH} == "sparc64"
BROKEN= Does not link on sparc64-9
.endif
.endif