mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
5cb45bbc99
This reverts commit 972c25de7d
.
This commit broke OEM factory reset functionality, so revert it
until the issue can be properly diagnosed.
Signed-off-by: Matt DeVillier <matt.devillier@puri.sm>
24 lines
689 B
Plaintext
24 lines
689 B
Plaintext
modules-$(CONFIG_GPG2) += libgcrypt
|
|
libgcrypt_version := 1.8.3
|
|
libgcrypt_dir := libgcrypt-$(libgcrypt_version)
|
|
libgcrypt_tar := libgcrypt-$(libgcrypt_version).tar.bz2
|
|
libgcrypt_url := https://gnupg.org/ftp/gcrypt/libgcrypt/$(libgcrypt_tar)
|
|
libgcrypt_hash := 66ec90be036747602f2b48f98312361a9180c97c68a690a5f376fa0f67d0af7c
|
|
|
|
libgcrypt_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--host=x86_64-linux-musl \
|
|
--prefix "/" \
|
|
--disable-static \
|
|
--with-libgpg-error-prefix="$(INSTALL)" \
|
|
--disable-asm \
|
|
|
|
libgcrypt_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libgcrypt_libraries := src/.libs/libgcrypt.so.20
|
|
|
|
libgcrypt_depends := libgpg-error $(musl_dep)
|