From: Remi Gacogne Date: Thu, 16 Dec 2021 08:56:30 +0000 (+0100) Subject: Tasks.py: Fix the format string for dnsdist's configure X-Git-Tag: auth-4.7.0-alpha1~103^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26c06327f2b0f0d051510f08934f27e55eaf0006;p=thirdparty%2Fpdns.git Tasks.py: Fix the format string for dnsdist's configure --- diff --git a/tasks.py b/tasks.py index be2ba451da..485d4f2b77 100644 --- a/tasks.py +++ b/tasks.py @@ -339,7 +339,7 @@ def ci_dnsdist_configure(c, features): CXX='clang++-12' \ --enable-option-checking=fatal \ --enable-unit-tests \ - --prefix=/opt/dnsdist %s %s %s''' % (cflags, cxxflags, features_set, sanitizers), warn=True) + --prefix=/opt/dnsdist %s %s''' % (cflags, cxxflags, features_set, sanitizers), warn=True) if res.exited != 0: c.run('cat config.log') raise UnexpectedExit(res)