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:
parent
9c1b33e74b
commit
1db856d08a
|
@ -17,7 +17,7 @@ CC = gcc
|
||||||
RM = rm
|
RM = rm
|
||||||
CFLAGS += -Wall -g
|
CFLAGS += -Wall -g
|
||||||
|
|
||||||
LIBS = -lgmp -lssl -lcrypto
|
LIBS = -lssl -lcrypto
|
||||||
|
|
||||||
%.o : %.c
|
%.o : %.c
|
||||||
$(CC) -c $(CFLAGS) -o $@ $<
|
$(CC) -c $(CFLAGS) -o $@ $<
|
||||||
|
|
|
@ -4,7 +4,7 @@ secimageobj += io.o
|
||||||
secimageobj += misc.o
|
secimageobj += misc.o
|
||||||
secimageobj += sbi.o
|
secimageobj += sbi.o
|
||||||
|
|
||||||
LIBS = -lgmp -lssl -lcrypto
|
LIBS = -lssl -lcrypto
|
||||||
|
|
||||||
additional-dirs += $(objutil)/broadcom/secimage
|
additional-dirs += $(objutil)/broadcom/secimage
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue