The subdirectory Makefile includes a file, that overrides the
variables inherited from the parent Makefile. Those where provided
to the parent make through '-e'.
Make sure the subdir makes also use '-e'.
(An alternative fix is to sed the include file.)
Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
export PKG_MAN_DIR=${D}${mandir}
export PKG_DOC_DIR=${D}${datadir}/doc/acl
export PKG_LOCALE_DIR=${D}${datadir}/locale
+ # ensure the subdir Makefile do not use the (wrong) variable overrides from the include file
+ export MAKE="${MAKE} -e"
oe_runmake -e install install-dev install-lib
export PKG_MAN_DIR=${D}${mandir}
export PKG_DOC_DIR=${D}${datadir}/doc/attr
export PKG_LOCALE_DIR=${D}${datadir}/locale
+ # ensure the subdir Makefile do not use the (wrong) variable overrides from the include file
+ export MAKE="${MAKE} -e"
oe_runmake -e install install-dev install-lib