Commit 0cdba6b1 authored by Michal Berger's avatar Michal Berger Committed by Konrad Sztyber
Browse files

scripts/pkgdep: Don't update lib links after liburing installation



liburing's install target already puts all needed links in place.
In case there's a different version available on the system,
executing plain ldconfig may revert these links, pointing at a
different version than user may expect.

Still, this is just a mitigation. The assumption here is that
install_liburing() is called in a "clean" environment. Any potential
conflicts should be resolved by system's admin as we should not
touch anything that was already pre installed on the target
system.

Change-Id: I8137dfde13e1d2696aaff84535cce647f552d8ad
Signed-off-by: default avatarMichal Berger <michal.berger@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24650


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Reviewed-by: default avatarJim Harris <jim.harris@samsung.com>
Reviewed-by: default avatarKarol Latecki <karol.latecki@intel.com>
Reviewed-by: default avatarKonrad Sztyber <konrad.sztyber@intel.com>
parent d8f52da1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ install_liburing() {
	git -C "$liburing_dir" checkout liburing-2.2
	(cd "$liburing_dir" && ./configure --libdir=/usr/lib64 --libdevdir=/usr/lib64 && make install)
	echo /usr/lib64 > /etc/ld.so.conf.d/spdk-liburing.conf
	ldconfig
	ldconfig -X
}

install_uadk() {