summaryrefslogtreecommitdiffstats
path: root/util/cbfstool/Makefile.inc
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-06-29 21:01:44 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-01 18:06:16 +0000
commitc6dd4435d272681657a623c9f05d86b504ec276f (patch)
tree5f7c7b39b48f2efa2ba88b53da0bcd8280e29669 /util/cbfstool/Makefile.inc
parent16868bcaa276b6d40996ae70e5aba9d80c1ee3f5 (diff)
downloadcoreboot-c6dd4435d272681657a623c9f05d86b504ec276f.tar.gz
coreboot-c6dd4435d272681657a623c9f05d86b504ec276f.tar.bz2
coreboot-c6dd4435d272681657a623c9f05d86b504ec276f.zip
util/cbfstool: Defuse vboot's openssl linking
Vboot determines openssl through pkgconfig, so pointing its build system to /bin/true makes the build not break unless it needs to use valid information about openssl. Vboot's use of openssl is only for some special features, mostly around PKCS key format parsing and not needed by cbfstool. While cbfstool can link vboot, it can't link with openssl because openssl's license is deliberately incompatible with the GPL. Change-Id: Ia3825f9625a1964d7cefc47ab3c3a8250ceefafb Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42880 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'util/cbfstool/Makefile.inc')
-rw-r--r--util/cbfstool/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/Makefile.inc b/util/cbfstool/Makefile.inc
index f38c8258a666..bc2ff48fe0d8 100644
--- a/util/cbfstool/Makefile.inc
+++ b/util/cbfstool/Makefile.inc
@@ -133,7 +133,7 @@ $(VBOOT_HOSTLIB):
unset CFLAGS LDFLAGS; $(MAKE) -C $(VBOOT_SOURCE) \
BUILD=$(VBOOT_HOST_BUILD) \
CC="$(HOSTCC)" \
- $(if $(HOSTPKGCONFIG), PKG_CONFIG="$(HOSTPKGCONFIG)") \
+ PKG_CONFIG="true" \
V=$(V) \
hostlib