The following changes since commit 8c17a6248bd227a9f3cc3da52bd1cb922dc6cf81: t/zbd: Fix test target size of test case #48 (2020-10-30 07:24:59 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 08a3f6fef1fe6c9fcd18d5ed40ca81097922bb14: fio: fix dynamic engines soname definition (2020-11-01 07:16:16 -0700) ---------------------------------------------------------------- Yigal Korman (1): fio: fix dynamic engines soname definition Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/Makefile b/Makefile index 5ed8a808..48788f24 100644 --- a/Makefile +++ b/Makefile @@ -569,7 +569,7 @@ endif ifdef CONFIG_DYNAMIC_ENGINES engines/lib$(1).so: $$($(1)_OBJS) - $$(QUIET_LINK)$(CC) -shared -rdynamic -fPIC -Wl,-soname,lib$(1).so.1 $$($(1)_LIBS) -o $$@ $$< + $$(QUIET_LINK)$(CC) -shared -rdynamic -fPIC -Wl,-soname,fio-$(1).so.1 $$($(1)_LIBS) -o $$@ $$< endif clean: FORCE