mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 23:47:42 +00:00
sudo: ensure proper CPPFLAGS are used for host/compat build
Fixes http://autobuild.buildroot.net/results/ea326401a6711aaac10696629655e6d5ac4e0a90 sudo internally uses CPPFLAGS, so host/compat build now breaks after CPPFLAGS got added to HOST_CONFIGURE_OPTS. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
6357223722
commit
526badc945
@ -18,7 +18,9 @@ SUDO_CONF_OPT = \
|
|||||||
|
|
||||||
# mksigname/mksiglist needs to run on build host to generate source files
|
# mksigname/mksiglist needs to run on build host to generate source files
|
||||||
define SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
|
define SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
|
||||||
$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D)/compat mksigname mksiglist
|
$(MAKE) $(HOST_CONFIGURE_OPTS) \
|
||||||
|
CPPFLAGS="$(HOST_CPPFLAGS) -I../include -I.." \
|
||||||
|
-C $(@D)/compat mksigname mksiglist
|
||||||
endef
|
endef
|
||||||
|
|
||||||
SUDO_POST_CONFIGURE_HOOKS += SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
|
SUDO_POST_CONFIGURE_HOOKS += SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
|
||||||
|
Loading…
x
Reference in New Issue
Block a user