From ccce51426b387070cf2863b7c196e2536b583916 Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Mon, 15 Jan 2024 10:24:48 +0100 Subject: [PATCH] Stop explicitly requiring fakeroot On older Debian/Ubuntu it gets installed, and dpkg-buildpackage should use it. On newer versions, we do not need it. --- helpers/build-debs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/build-debs.sh b/helpers/build-debs.sh index 8177a69..f082b42 100755 --- a/helpers/build-debs.sh +++ b/helpers/build-debs.sh @@ -77,6 +77,6 @@ EOF # allow build to use all available processors export DEB_BUILD_OPTIONS='parallel='`nproc` - fakeroot debian/rules binary || exit 1 + dpkg-buildpackage -b || exit 1 popd done