526badc945
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>
33 lines
821 B
Makefile
33 lines
821 B
Makefile
#############################################################
|
|
#
|
|
# sudo
|
|
#
|
|
#############################################################
|
|
|
|
SUDO_VERSION = 1.8.6
|
|
SUDO_SITE = http://www.sudo.ws/sudo/dist
|
|
SUDO_LICENSE = ICS BSD-3c
|
|
SUDO_LICENSE_FILES = doc/LICENSE
|
|
SUDO_CONF_OPT = \
|
|
--without-lecture \
|
|
--without-sendmail \
|
|
--without-umask \
|
|
--with-logging=syslog \
|
|
--without-interfaces \
|
|
--without-pam
|
|
|
|
# mksigname/mksiglist needs to run on build host to generate source files
|
|
define SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
|
|
$(MAKE) $(HOST_CONFIGURE_OPTS) \
|
|
CPPFLAGS="$(HOST_CPPFLAGS) -I../include -I.." \
|
|
-C $(@D)/compat mksigname mksiglist
|
|
endef
|
|
|
|
SUDO_POST_CONFIGURE_HOOKS += SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
|
|
|
|
define SUDO_PERMISSIONS
|
|
/usr/bin/sudo f 4755 0 0 - - - - -
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|