diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2016-03-31 17:27:14 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2016-03-31 17:27:14 +0000 |
commit | 814a0c259a11dd8f6e48e378b1be756df1876b21 (patch) | |
tree | 4d15464d393cf48e0bc21693c587560c936fe242 /Makefile.libcompat | |
parent | 9fd5efc7e54ec4734354c84ffad10395c3eb8399 (diff) | |
download | FreeBSD-src-814a0c259a11dd8f6e48e378b1be756df1876b21.zip FreeBSD-src-814a0c259a11dd8f6e48e378b1be756df1876b21.tar.gz |
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
Diffstat (limited to 'Makefile.libcompat')
-rw-r--r-- | Makefile.libcompat | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.libcompat b/Makefile.libcompat index 8060acb..3ab962f 100644 --- a/Makefile.libcompat +++ b/Makefile.libcompat @@ -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 |