Date: Wed, 12 Apr 2017 17:21:04 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438395 - head/graphics/oyranos Message-ID: <201704121721.v3CHL4Gv045560@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201704121721.v3CHL4Gv045560>