svn commit: r297462 - head

Bryan Drewery bdrewery at FreeBSD.org
Thu Mar 31 17:27:16 UTC 2016


Author: bdrewery
Date: Thu Mar 31 17:27:14 2016
New Revision: 297462
URL: https://svnweb.freebsd.org/changeset/base/297462

Log:
  LIB32+WITHOUT_TOOLCHAIN: Fix build by staging includes.
  
  This is the same fix as r297281 for the normal build.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/Makefile.libcompat

Modified: head/Makefile.libcompat
==============================================================================
--- head/Makefile.libcompat	Thu Mar 31 17:27:01 2016	(r297461)
+++ head/Makefile.libcompat	Thu Mar 31 17:27:14 2016	(r297462)
@@ -134,7 +134,8 @@ build${libcompat}: .PHONY
 	ln -sf ${.CURDIR}/sys ${WORLDTMP}
 .for _t in obj includes
 .for _dir in ${_LC_INCDIRS}
-	${_+_}cd ${.CURDIR}/${_dir}; ${LIBCOMPATWMAKE} DIRPRFX=${_dir}/ ${_t}
+	${_+_}cd ${.CURDIR}/${_dir}; ${LIBCOMPATWMAKE} MK_INCLUDES=yes \
+	    DIRPRFX=${_dir}/ ${_t}
 .endfor
 .endfor
 .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic


More information about the svn-src-all mailing list