osmith submitted this change.
debian/rules: don't build in parallel
With upgrading the debhelper compat level to v10, parallel building was
enabled by default. But this doesn't work reliably with libusrp, so
disable it. On OBS, out of 18 builds, two failed.
Related: OS#3970
Change-Id: Ic23778320a44ec6ee2fef499216eb8a0c52603d2
---
M debian/rules
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/debian/rules b/debian/rules
index c00c435..3ad8a03 100755
--- a/debian/rules
+++ b/debian/rules
@@ -9,8 +9,9 @@
#export DH_VERBOSE=1
+# --no-parallel: OS#3970
%:
- dh $@ --with autoreconf --fail-missing
+ dh $@ --with autoreconf --fail-missing --no-parallel
override_dh_auto_configure:
dh_auto_configure -- --enable-doxygen
To view, visit change 32545. To unsubscribe, or for help writing mail filters, visit settings.