diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2014-02-15 19:18:01 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2014-02-15 19:18:01 +0000 |
commit | 403125bff527a9445bef2c965b5c975638e5b63c (patch) | |
tree | 255d11c11b52b9e0813389765d2ca2286ac06498 /lang/gcc | |
parent | f689221dd6347f3ad543aa308287a66386a2cf10 (diff) | |
download | ports-403125bff527a9445bef2c965b5c975638e5b63c.tar.gz ports-403125bff527a9445bef2c965b5c975638e5b63c.zip |
No longer add -I${LOCALBASE}/include to CFLAGS.
Since we now configure with --with-gmp=${LOCALBASE} this is no longer
necessary, and due to bugs in binutils (which should not install ansidecl.h
into ${PREFIX}/include, fixed with revision 336642 [1]) and GCC (which
should search its own include directories with higher priority) could
lead to build failures.
PR: 184327 [1]
Notes
Notes:
svn path=/head/; revision=344478
Diffstat (limited to 'lang/gcc')
-rw-r--r-- | lang/gcc/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lang/gcc/Makefile b/lang/gcc/Makefile index bed7e94bde34..d539c3a06ac5 100644 --- a/lang/gcc/Makefile +++ b/lang/gcc/Makefile @@ -58,7 +58,6 @@ WRKSRC= ${WRKDIR}/build TARGLIB= ${PREFIX}/lib/gcc${SUFFIX} LIBEXEC= ${PREFIX}/libexec/gcc${SUFFIX} GNU_CONFIGURE= yes -CFLAGS+= -I${LOCALBASE}/include .if empty(PORT_OPTIONS:MBOOTSTRAP) CONFIGURE_ARGS+=--disable-bootstrap .else |