From 37301d70a3928ed807ff3ea06b4f1c172aad820a Mon Sep 17 00:00:00 2001 From: Kyle Bloom Date: Fri, 13 May 2022 14:07:42 +0100 Subject: [PATCH] Remove tmpdir from dh to fix builds on 22.04 (#7169) * Remove tmpdir from dh to fix builds on 22.04 * Update changelog --- ChangeLog | 1 + debian/rules | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f0d0f66df..afc928db0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -17,6 +17,7 @@ Github Actions: - #7161 Use brew bundle to install dependencies - #7162 Add new distributions to CI - #7167 Use changelog when creating deb files +- #7169 Remove temporary directory when building debs =========== v1.14.3-snapshot diff --git a/debian/rules b/debian/rules index 64ddd45f2..d4d5a171a 100755 --- a/debian/rules +++ b/debian/rules @@ -1,5 +1,5 @@ #!/usr/bin/make -f %: - dh $@ --buildsystem=cmake --builddirectory=build -Pbuild/debian --parallel + dh $@ --buildsystem=cmake --builddirectory=build --parallel