From d0498b9e7d61a9f12957d6dd0fd8669c69b3b411 Mon Sep 17 00:00:00 2001 From: David Korth Date: Mon, 16 Jun 2025 23:52:16 -0400 Subject: [PATCH] [debian] rules: Explicitly set QT_VERSION=5. CMake failed to find Qt on the Launchpad build server for Ubuntu 18.04 for some reason. (...though it worked on 16.04?) (cherry picked from commit 99988fb273359f906878cb83bd509d44d539242f) Conflicts: debian/changelog --- debian/rules | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index ae8724d..7ffc6e0 100755 --- a/debian/rules +++ b/debian/rules @@ -10,7 +10,8 @@ DESTDIR := $(CURDIR)/debian/rvthtool CMAKE_OPTIONS := \ -DCMAKE_BUILD_TYPE=Release \ -DSPLIT_DEBUG=OFF \ - -DENABLE_LTO=OFF + -DENABLE_LTO=OFF \ + -DQT_VERSION=5 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) CMAKE_OPTIONS += -DBUILD_TESTING=ON endif