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>
This commit is contained in:
Stefan Reinauer 2015-07-30 16:26:00 -07:00 committed by Patrick Georgi
parent 9c1b33e74b
commit 1db856d08a
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ CC = gcc
RM = rm
CFLAGS += -Wall -g
LIBS = -lgmp -lssl -lcrypto
LIBS = -lssl -lcrypto
%.o : %.c
$(CC) -c $(CFLAGS) -o $@ $<

View File

@ -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