diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2015-08-06 16:57:48 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-08-09 12:34:24 +0200 |
commit | 03597d0f017f4506f0905d7c87ec0d51859d8982 (patch) | |
tree | fa5c694450a5d2b169ec080e8c7ee97dbc82e26c /util/broadcom/secimage/Makefile | |
parent | 9dd8f888418e75debb767fa799e5a4ce2b924bf6 (diff) |
secimage: Use libz's crc32 function
This is to trick libreboot into not deleting misc.c when checking
out coreboot.
Change-Id: I8f0bb5cb3eb5681f99c616ae03de126efab852a9
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: http://review.coreboot.org/11134
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/broadcom/secimage/Makefile')
-rw-r--r-- | util/broadcom/secimage/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/broadcom/secimage/Makefile b/util/broadcom/secimage/Makefile index 58f3bc182c..9dd1396948 100644 --- a/util/broadcom/secimage/Makefile +++ b/util/broadcom/secimage/Makefile @@ -17,7 +17,7 @@ CC = gcc RM = rm CFLAGS += -Wall -g -LIBS = -lssl -lcrypto +LIBS = -lssl -lcrypto -lz %.o : %.c $(CC) -c $(CFLAGS) -o $@ $< |