From ea4f28ac9953ef8bf9984b0295c40fdec152b168 Mon Sep 17 00:00:00 2001 From: Oleksiy Protas Date: Wed, 4 Sep 2024 18:08:51 +0300 Subject: [PATCH] Pass LDFLAGS to wfb_tx_cmd (#368) Allows the build system to properly pass extra flags, e.g. GNU_HASH for openembedded --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d6434c9..b1aa078 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ wfb_keygen: src/keygen.o $(CC) -o $@ $^ $(_LDFLAGS) wfb_tx_cmd: src/tx_cmd.o - $(CC) -o $@ $^ + $(CC) -o $@ $^ $(LDFLAGS) test: all_bin PYTHONPATH=`pwd` trial3 wfb_ng.tests