Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Nov 2009 08:20:30 +0000 (UTC)
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r198741 - head
Message-ID:  <200911010820.nA18KUj4017208@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rdivacky
Date: Sun Nov  1 08:20:30 2009
New Revision: 198741
URL: http://svn.freebsd.org/changeset/base/198741

Log:
  Replace -iprefix with -isystem. We only need alternative header
  files search path and thus -isystem is sufficient. -iprefix is
  meant to do something entirely different.
  
  Approved by:	ed (mentor)
  OKed by:	ru, kan
  Tested by:	make universe

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Sun Nov  1 04:57:41 2009	(r198740)
+++ head/Makefile.inc1	Sun Nov  1 08:20:30 2009	(r198741)
@@ -272,7 +272,7 @@ LIB32CPUFLAGS=	-march=i686 -mmmx -msse -
 LIB32CPUFLAGS=	-march=${TARGET_CPUTYPE}
 .endif
 LIB32FLAGS=	-m32 ${LIB32CPUFLAGS} -mfancy-math-387 -DCOMPAT_32BIT \
-		-iprefix ${LIB32TMP}/usr/ \
+		-isystem ${LIB32TMP}/usr/include/ \
 		-L${LIB32TMP}/usr/lib32 \
 		-B${LIB32TMP}/usr/lib32
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911010820.nA18KUj4017208>