From f52b8b1a2ec89af712eaedd7e25077f432236308 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Tue, 25 Apr 2023 15:37:02 +0200 Subject: [PATCH] debian: set compat level to 10 Set --no-parallel, as in v10 debhelper defaults to parallel building. This is apparently not supported by simtrace2's Makefile, it leads to multiple non-trivial build errors. In contrib/jenkins.sh we also don't build multiple firmwares in parallel. Related: OS#5958 Related: https://manpages.debian.org/testing/debhelper/debhelper-compat-upgrade-checklist.7.en.html Change-Id: I49fcc4fe9d3e795f8c3514d35ff3e2beca2917d1 --- debian/compat | 2 +- debian/control | 4 ++-- debian/rules | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/compat b/debian/compat index ec635144..f599e28b 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/debian/control b/debian/control index 02d697dd..cae4e8d5 100644 --- a/debian/control +++ b/debian/control @@ -1,8 +1,8 @@ Source: simtrace2 -Maintainer: Harald Welte +Maintainer: Osmocom team Section: devel Priority: optional -Build-Depends: debhelper (>= 9), +Build-Depends: debhelper (>= 10), autotools-dev, autoconf, automake, diff --git a/debian/rules b/debian/rules index 9d1fa4b0..37cd4d75 100755 --- a/debian/rules +++ b/debian/rules @@ -13,4 +13,4 @@ export DEB_LDFLAGS_MAINT_STRIP = -Wl,-Bsymbolic-functions %: - dh $@ + dh $@ --no-parallel