7233016f25
Fix the following build failure raised since the addition of the package in commit2e6e121496
: mokutil.c:45:10: fatal error: crypt.h: No such file or directory 45 | #include <crypt.h> | ^~~~~~~~~ Fixes:2e6e121496
- http://autobuild.buildroot.org/results/59e470ad6bf7f48314cd26ed4163c095e4c803ab Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
493 B
Makefile
21 lines
493 B
Makefile
################################################################################
|
|
#
|
|
# mokutil
|
|
#
|
|
################################################################################
|
|
|
|
MOKUTIL_VERSION = 0.7.1
|
|
MOKUTIL_SITE = $(call github,lcp,mokutil,$(MOKUTIL_VERSION))
|
|
MOKUTIL_LICENSE = GPL-3.0+
|
|
MOKUTIL_LICENSE_FILES = COPYING
|
|
MOKUTIL_AUTORECONF = YES
|
|
|
|
MOKUTIL_DEPENDENCIES = \
|
|
efivar \
|
|
host-pkgconf \
|
|
keyutils \
|
|
$(if $(BR2_PACKAGE_LIBXCRYPT),libxcrypt) \
|
|
openssl
|
|
|
|
$(eval $(autotools-package))
|