From 8bda8da4143814437c09ca9a1ee905ef272a7dc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois-Simon=20Fauteux-Chapleau?= <francois-simon.fauteux-chapleau@savoirfairelinux.com> Date: Thu, 10 Oct 2024 22:13:53 -0400 Subject: [PATCH] packaging: fix Docker build error The libpcre3-dev package doesn't exist on Debian testing, which caused an error when trying to build Dockerfile_debian_testing. Adding the newer libpcre2-dev package as an alternative in the debian/control file fixes the issue. GitLab: #1856 Change-Id: I3f9068a67101597eb2ffe7cb5a358870e7284e5b --- extras/packaging/gnu-linux/rules/debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/packaging/gnu-linux/rules/debian/control b/extras/packaging/gnu-linux/rules/debian/control index 2bd8e9e5c..2f44d4150 100644 --- a/extras/packaging/gnu-linux/rules/debian/control +++ b/extras/packaging/gnu-linux/rules/debian/control @@ -22,7 +22,7 @@ Build-Depends: debhelper (>= 9), libpulse-dev, libasound2-dev, libexpat1-dev, - libpcre3-dev, + libpcre3-dev | libpcre2-dev, libyaml-cpp-dev, libboost-dev, libxext-dev, -- GitLab