Fix thinko in LDFLAG patch

Resolves: rhbz#2044858
This commit is contained in:
Eric Sandeen 2022-02-08 11:05:03 -05:00
parent 212d1fbc82
commit eb549ed7de
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ index 76eb0d7d..00e79539 100644
$$($(1)_OBJS): CFLAGS := -fPIC $$($(1)_CFLAGS) $(CFLAGS)
engines/fio-$(1).so: $$($(1)_OBJS)
- $$(QUIET_LINK)$(CC) -shared -rdynamic -fPIC -Wl,-soname,fio-$(1).so.1 -o $$@ $$< $$($(1)_LIBS)
+ $$(QUIET_LINK)$(CC) $(DYNAMIC) -shared -rdynamic -fPIC -Wl,-soname,fio-$(1).so.1 -o $$@ $$< $$($(1)_LIBS)
+ $$(QUIET_LINK)$(CC) $(LDFLAGS) -shared -rdynamic -fPIC -Wl,-soname,fio-$(1).so.1 -o $$@ $$< $$($(1)_LIBS)
ENGS_OBJS += engines/fio-$(1).so
endef
else # !CONFIG_DYNAMIC_ENGINES

View File

@ -1,6 +1,6 @@
Name: fio
Version: 3.27
Release: 6%{?dist}
Release: 7%{?dist}
Summary: Multithreaded IO generation tool
License: GPLv2
@ -211,7 +211,7 @@ make install prefix=%{_prefix} mandir=%{_mandir} libdir=%{_libdir}/fio DESTDIR=$
%endif
%changelog
* Fri Feb 04 2022 Eric Sandeen <sandeen@redhat.com> - 3.27.6
* Tue Feb 08 2022 Eric Sandeen <sandeen@redhat.com> - 3.27.7
- Use LDFLAGS when linking dynamic engines
Related: rhbz#2044858