svn commit: r438395 - head/graphics/oyranos

Dmitry Marakasov amdmi3 at FreeBSD.org
Wed Apr 12 17:21:06 UTC 2017


Author: amdmi3
Date: Wed Apr 12 17:21:04 2017
New Revision: 438395
URL: https://svnweb.freebsd.org/changeset/ports/438395

Log:
  - Fix for the previous commit: leave USE_GCC there when clang is not available to use recent gcc version
  
  Suggested by:	jbeich
  Approved by:	portmgr blanket

Modified:
  head/graphics/oyranos/Makefile

Modified: head/graphics/oyranos/Makefile
==============================================================================
--- head/graphics/oyranos/Makefile	Wed Apr 12 17:20:39 2017	(r438394)
+++ head/graphics/oyranos/Makefile	Wed Apr 12 17:21:04 2017	(r438395)
@@ -41,6 +41,10 @@ PORTDOCS=	*
 
 PLIST_SUB+=	VER=${PORTVERSION}
 
+.if !exists(/usr/bin/clang)
+USE_GCC=   yes
+.endif
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|lib|libdata|' \
 		${WRKSRC}/extras/CMakeLists.txt


More information about the svn-ports-all mailing list