aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-06-23 12:56:56 -0400
committerRob Austein <sra@hactrn.net>2016-06-23 12:56:56 -0400
commitbf50cf8a7817274a7fb5e02d09a53598e168e22c (patch)
treefc7f7b625e61bdd63936e9263e9bfc202b0ecde7
parent715159e83b97e78a779bfeb38d634decd8e499fc (diff)
Preserve externally supplied LDFLAGS value (Lintian whines otherwise).
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 151ce5c..c8160a9 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -181,7 +181,7 @@ endif
TFMDIR := $(abspath ../thirdparty/libtfm)
CFLAGS += -g3 -Wall -std=c99 -Wno-strict-aliasing -I${TFMDIR}
-LDFLAGS := -g3 -L${TFMDIR} -ltfm
+LDFLAGS += -g3 -L${TFMDIR} -ltfm
CFLAGS += -DHAL_STATIC_HASH_STATE_BLOCKS=${STATIC_HASH_STATE_BLOCKS}
CFLAGS += -DHAL_STATIC_HMAC_STATE_BLOCKS=${STATIC_HMAC_STATE_BLOCKS}