From d250ad6a01df0dde6a8efd7fd395795848661ace Mon Sep 17 00:00:00 2001 From: Vladimir Sokolovsky Date: Mon, 17 Feb 2014 15:54:16 +0200 Subject: [PATCH] install.pl: Temporary skip dependency check for libmlx4 The code can be compiled over libibverbs but the dependency check requires specific release number. Waiting for libibverbs-1.1.8 release. This commit should be reverted afterwards. Signed-off-by: Vladimir Sokolovsky --- install.pl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/install.pl b/install.pl index 9246628..ec5f710 100755 --- a/install.pl +++ b/install.pl @@ -3556,6 +3556,10 @@ sub build_rpm $cmd .= " --define '_usr $prefix'"; } + if ($parent eq "libmlx4") { + $cmd .= " --nodeps"; + } + if ($parent eq "librdmacm") { if ( $packages_info{'ibacm'}{'selected'}) { $packages_info{'librdmacm'}{'configure_options'} .= " --with-ib_acm"; @@ -3656,6 +3660,11 @@ sub install_rpm_32 if ($DISTRO =~ m/SLES/) { $cmd .= " --force"; } + + if ($name eq "libmlx4") { + $cmd .= " --nodeps"; + } + $cmd .= " $package"; print "Running $cmd\n" if ($verbose); @@ -3702,6 +3711,11 @@ sub install_rpm $cmd .= " --nodeps"; } + if ($name eq "libmlx4") { + $cmd .= " --nodeps"; + } + + $cmd .= " $package"; print "Running $cmd\n" if ($verbose); -- 2.41.0