diff mbox series

[SRU,F/G/U,1/3] UBUNTU: [Config]: do not enforce CONFIG_VERSION_SIGNATURE

Message ID 20200518133702.226714-2-cascardo@canonical.com
State New
Headers show
Series [SRU,F/G/U,1/3] UBUNTU: [Config]: do not enforce CONFIG_VERSION_SIGNATURE | expand

Commit Message

Thadeu Lima de Souza Cascardo May 18, 2020, 1:37 p.m. UTC
BugLink: https://bugs.launchpad.net/bugs/1879327

This config option is dynamically changed by our build, which would make
annotating it require changes coupled with the changelog, making it too
cumbersome.

Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@canonical.com>
---
 debian/scripts/config-check | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/debian/scripts/config-check b/debian/scripts/config-check
index 95edd39dc407..b7e37a38c207 100755
--- a/debian/scripts/config-check
+++ b/debian/scripts/config-check
@@ -135,6 +135,8 @@  for $config (keys %annot) {
 		$check = 0;
 	}
 	if ($check) {
+		# CONFIG_VERSION_SIGNATURE is dynamically set during the build
+		next if ($config eq "CONFIG_VERSION_SIGNATURE");
 		my $is = '-';
 		$is = $values{$config} if (defined $values{$config});