SLES10sp2 does not have automake and autoconf installed by default. Building rnfs-utils will break due to the missing deps, and the log will have to be inspected to determine the reason. This patch will have OFED show prior to building that the necessary dependencies are missing (as is done with most other user space tools).
Signed-Off-By: Jon Mason <[email protected]> --- diff --git a/install.pl b/install.pl index d2634e6..b91cabc 100755 --- a/install.pl +++ b/install.pl @@ -944,7 +944,7 @@ my %packages_info = ( 'rnfs-utils' => { name => "rnfs-utils", parent => "rnfs-utils", selected => 0, installed => 0, rpm_exist => 0, rpm_exist32 => 0, - available => 0, mode => "user", dist_req_build => [], + available => 0, mode => "user", dist_req_build => ["automake", "autoconf"], dist_req_inst => [], ofa_req_build => [], ofa_req_inst => [], install32 => 0, exception => 0, configure_options => '' }, _______________________________________________ ewg mailing list [email protected] http://lists.openfabrics.org/cgi-bin/mailman/listinfo/ewg
