From owner-svn-ports-all@FreeBSD.ORG Sun Jan 25 12:53:08 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 866263BF; Sun, 25 Jan 2015 12:53:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7217019D; Sun, 25 Jan 2015 12:53:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0PCr8ak054385; Sun, 25 Jan 2015 12:53:08 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0PCr8mv054384; Sun, 25 Jan 2015 12:53:08 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201501251253.t0PCr8mv054384@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 25 Jan 2015 12:53:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377892 - head/devel/git X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jan 2015 12:53:08 -0000 Author: jbeich Date: Sun Jan 25 12:53:07 2015 New Revision: 377892 URL: https://svnweb.freebsd.org/changeset/ports/377892 QAT: https://qat.redports.org/buildarchive/r377892/ Log: Unbreak build with devel/utf8cpp installed Let preprocessor know ${LOCALBASE}/include is a system include path, so #include "..." shouldn't try to pick headers from there. lang/gcc* and lang/clang* already do the right thing. PR: 196220 Differential Revision: https://reviews.freebsd.org/D1664 Approved by: garga (maintainer) Approved by: bapt (mentor) Modified: head/devel/git/Makefile Modified: head/devel/git/Makefile ============================================================================== --- head/devel/git/Makefile Sun Jan 25 12:49:51 2015 (r377891) +++ head/devel/git/Makefile Sun Jan 25 12:53:07 2015 (r377892) @@ -28,7 +28,7 @@ PKGMESSAGE= ${WRKDIR}/pkg-message GNU_CONFIGURE= yes USES= gmake shebangfix tar:xz -CPPFLAGS+= -I${LOCALBASE}/include +CPPFLAGS+= -isystem${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib MAKE_ENV+= V=1 USE_OPENSSL= yes