svn commit: r377892 - head/devel/git

Jan Beich jbeich at FreeBSD.org
Sun Jan 25 12:53:08 UTC 2015


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


More information about the svn-ports-all mailing list