Hello Jason, When I build an RPM using the top-level rdma-core.spec file I need the following patch to ensure that the verbs library looks into /etc/libibverbs.d instead of a path in the build directory: diff --git a/rdma-core.spec b/rdma-core.spec index 6a280fe1..f2419e82 100644 --- a/rdma-core.spec +++ b/rdma-core.spec @@ -34,7 +34,7 @@ BuildRequires: ninja,make # Tumbleweed's cmake RPM macro adds -Wl,--no-undefined to the module flags # which is totally inappropriate and breaks building 'ENABLE_EXPORTS' style # module libraries (eg ibacmp). -%define CMAKE_FLAGS -DCMAKE_MODULE_LINKER_FLAGS="" +%define CMAKE_FLAGS -DCMAKE_MODULE_LINKER_FLAGS="" -DIN_PLACE=0 %else %if 0%{?fedora} >= 23 # Ninja was introduced in FC23 Do you think this is an issue with the spec file or with one of the CMake files? The script I use to build an RPM is as follows: #!/bin/sh name=rdma-core version=$(sed -n 's/^Version:[[:blank:]]*//p' rdma-core.spec) rpmtopdir=$PWD/rpmbuilddir rm -rf ${rpmtopdir} && mkdir -p ${rpmtopdir}/{BUILD,RPMS,SOURCES,SPECS,SRPMS} && git archive --prefix rdma-core-${version}/ --output ${rpmtopdir}/SOURCES/${name}-${version}.tgz HEAD && rpmbuild --define="%_topdir ${rpmtopdir}" -ba ${name}.spec Thanks, Bart.-- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html