Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/jenkins_tests/rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if [ $opt_binrpm -eq 1 ]; then
if [ $opt_rpm -eq 1 ]; then
test_exec="env RPM_BUILD_NCPUS=${NPROC} rpmbuild -bb --define='configure_options $jenkins_test_custom_configure' $rpmmacros $rpmopts $rpmspec"
else
test_exec="env configure_options=\"$jenkins_test_custom_configure\" dpkg-buildpackage -us -uc -b"
test_exec="env configure_options=\"$jenkins_test_custom_configure\" make_opts=\"-j${NPROC}\" dpkg-buildpackage --jobs=$NPROC -us -uc -b"
fi
do_check_result "$test_exec" "$test_id" "binrpm" "$rpm_tap" "${rpm_dir}/rpm-${test_id}"
test_id=$((test_id+1))
Expand Down
2 changes: 1 addition & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build-debug:
./configure --with-ofed=/usr --prefix=/usr \
--libdir=/usr/lib --includedir=/usr/include --sysconfdir=/etc \
--enable-opt-log=none --enable-debug ${configure_options}
make
make ${make_opts}
cp -f src/core/.libs/libxlio.so libxlio-debug.so
make clean

Expand Down