aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDon Brady <[email protected]>2019-06-05 15:21:25 -0600
committerBrian Behlendorf <[email protected]>2019-06-05 14:21:25 -0700
commit8e91c5ba6a1b2c607a1ed4a0a42b2d07eca13091 (patch)
treefbdcc90f4369b2780bd2b367a8676415e024a134
parent1a6889947eadb1602109e2f683041865205e8fa8 (diff)
hkdf_test binary should only have one icp instance
The build for test binary hkdf_test was linking both against libicp and libzpool. This results in two instances of libicp inside the binary but the call to icp_init() only initializes one of them! Reviewed-by: Richard Elling <[email protected]> Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: George Melikov <[email protected]> Signed-off-by: Don Brady <[email protected]> Closes #8850
-rw-r--r--tests/zfs-tests/tests/functional/hkdf/Makefile.am3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/zfs-tests/tests/functional/hkdf/Makefile.am b/tests/zfs-tests/tests/functional/hkdf/Makefile.am
index d0a68f442..3ac26ed21 100644
--- a/tests/zfs-tests/tests/functional/hkdf/Makefile.am
+++ b/tests/zfs-tests/tests/functional/hkdf/Makefile.am
@@ -2,8 +2,7 @@ include $(top_srcdir)/config/Rules.am
AM_CPPFLAGS += -I$(top_srcdir)/include
AM_CPPFLAGS += -I$(top_srcdir)/lib/libspl/include
-LDADD = $(top_srcdir)/lib/libicp/libicp.la
-LDADD += $(top_srcdir)/lib/libzpool/libzpool.la
+LDADD = $(top_srcdir)/lib/libzpool/libzpool.la
AUTOMAKE_OPTIONS = subdir-objects