Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Aug 2016 02:50:24 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r421041 - head/devel/libdispatch
Message-ID:  <201608290250.u7T2oOIA089067@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608290250.u7T2oOIA089067>