svn commit: r300905 - head/lib/libc++

Bryan Drewery bdrewery at FreeBSD.org
Sat May 28 16:38:10 UTC 2016


Author: bdrewery
Date: Sat May 28 16:38:09 2016
New Revision: 300905
URL: https://svnweb.freebsd.org/changeset/base/300905

Log:
  Use a relative symlink for proper --sysroot support.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/lib/libc++/Makefile

Modified: head/lib/libc++/Makefile
==============================================================================
--- head/lib/libc++/Makefile	Sat May 28 16:21:05 2016	(r300904)
+++ head/lib/libc++/Makefile	Sat May 28 16:38:09 2016	(r300905)
@@ -187,7 +187,7 @@ RT_HEADERS=	cxxabi.h\
 
 .for hdr in ${STD_HEADERS}
 STD+=		${HDRDIR}/${hdr}
-INCSLINKS+=	${CXXINCLUDEDIR}/${hdr} ${CXXINCLUDEDIR}/tr1/${hdr}
+INCSLINKS+=	../${hdr} ${CXXINCLUDEDIR}/tr1/${hdr}
 .endfor
 .for hdr in ${RT_HEADERS}
 STD+=		${_LIBCXXRTDIR}/${hdr}


More information about the svn-src-head mailing list