diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2015-07-30 16:26:00 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-07-31 17:40:32 +0200 |
commit | 1db856d08aecdb3a5fb76ddee7918afc1964b395 (patch) | |
tree | 2e7648afeb5914824e9610ccb06dcd536e892eac /util/broadcom/secimage/Makefile.inc | |
parent | 9c1b33e74bbb0a6ebcfa66bad80cdaad83a5fdf4 (diff) | |
download | coreboot-1db856d08aecdb3a5fb76ddee7918afc1964b395.tar.xz |
secimage: Don't link in gmp library
secimage does not use libgmp, so don't link it in.
(Otherwise linking fails if the library is not installed)
Change-Id: I24af21c7754ecd0109f3e86669fa34fa6991d7fe
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: http://review.coreboot.org/11079
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/broadcom/secimage/Makefile.inc')
-rw-r--r-- | util/broadcom/secimage/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/broadcom/secimage/Makefile.inc b/util/broadcom/secimage/Makefile.inc index ee9a480ccc..a171a42462 100644 --- a/util/broadcom/secimage/Makefile.inc +++ b/util/broadcom/secimage/Makefile.inc @@ -4,7 +4,7 @@ secimageobj += io.o secimageobj += misc.o secimageobj += sbi.o -LIBS = -lgmp -lssl -lcrypto +LIBS = -lssl -lcrypto additional-dirs += $(objutil)/broadcom/secimage |