svn commit: r421041 - head/devel/libdispatch

Mark Linimon linimon at FreeBSD.org
Mon Aug 29 02:50:25 UTC 2016


Author: linimon
Date: Mon Aug 29 02:50:24 2016
New Revision: 421041
URL: https://svnweb.freebsd.org/changeset/ports/421041

Log:
  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.

Modified:
  head/devel/libdispatch/Makefile

Modified: head/devel/libdispatch/Makefile
==============================================================================
--- head/devel/libdispatch/Makefile	Mon Aug 29 01:57:59 2016	(r421040)
+++ head/devel/libdispatch/Makefile	Mon Aug 29 02:50:24 2016	(r421041)
@@ -85,9 +85,9 @@ CLANG_DESC=	Build with LLVM/Clang (requi
 .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


More information about the svn-ports-all mailing list