]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
UBUNTU: [Packaging]: config-check: some enforcement is ignored
authorThadeu Lima de Souza Cascardo <cascardo@canonical.com>
Thu, 19 Dec 2019 18:29:00 +0000 (19:29 +0100)
committerMarcelo Henrique Cerri <marcelo.cerri@canonical.com>
Fri, 17 Jan 2020 17:23:14 +0000 (14:23 -0300)
commit1e85cdaf32d7190a6d3fcdb96a4e2582fe65ac9d
tree77f4b42b2ff8f2a3202cc9abb84f9d9ba47e8495
parentc2431b7179b4a3972c36e826da87bd61cf035402
UBUNTU: [Packaging]: config-check: some enforcement is ignored

Whenever config-check finds an entry like:

CONFIG_VFIO mark<ENFORCED>note<LP#1636733>

it will consider mark<ENFORCED>note as the option name, as the regexp allows
any characters not in the whitespace class (\S). By using a class like [^\s<],
that is, not whitespace and not '<', it will be correctly parsed.

We could fix the entries that have this problem, but fixing the parser is more
robust.

Ignore: yes

Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
Acked-by: Marcelo Henrique Cerri <marcelo.cerri@canonical.com>
Acked-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
debian/scripts/config-check