diff options
author | Sitsofe Wheeler <sitsofe@yahoo.com> | 2020-07-26 11:27:22 +0100 |
---|---|---|
committer | Sitsofe Wheeler <sitsofe@yahoo.com> | 2020-07-26 11:55:10 +0100 |
commit | af5d13633f982eedb3899cb2cda2a6ad2a78b21f (patch) | |
tree | ec9b8fa6d3611360a1770e430583ad7d25e95847 | |
parent | 400ff0fb4bd5d3ecbff5fa4e783ea4d3e52817f1 (diff) | |
download | fio-af5d13633f982eedb3899cb2cda2a6ad2a78b21f.tar.gz fio-af5d13633f982eedb3899cb2cda2a6ad2a78b21f.tar.bz2 |
Makefile: fix incorrectly set libiscsi cflags
This fixes the warning
error: -liscsi: 'linker' input unused [-Werror,-Wunused-command-line-argument]
produced by clang.
Signed-off-by: Sitsofe Wheeler <sitsofe@yahoo.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ endif ifdef CONFIG_LIBISCSI iscsi_SRCS = engines/libiscsi.c iscsi_LIBS = $(LIBISCSI_LIBS) - iscsi_CFLAGS = $(LIBISCSI_LIBS) + iscsi_CFLAGS = $(LIBISCSI_CFLAGS) ENGINES += iscsi endif |