From 3ce97967e0a95be1585177de13ad7d4122f7fbc9 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Mon, 8 Aug 2022 23:26:07 +0200 Subject: [PATCH] utils/genrandconfig: fix indentation Commit 0f3115b2ca9fbdcf7a4e02aba45104f2d423fdb8 broke the indentation (missing one space) Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- utils/genrandconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/genrandconfig b/utils/genrandconfig index a56f03681a..4846c316bb 100755 --- a/utils/genrandconfig +++ b/utils/genrandconfig @@ -535,7 +535,7 @@ def fixup_config(sysinfo, configfile): if 'BR2_ARCH_HAS_NO_TOOLCHAIN_BUILDROOT=y\n' in configlines: return False - if 'BR2_PACKAGE_REFPOLICY=y\n' in configlines and \ + if 'BR2_PACKAGE_REFPOLICY=y\n' in configlines and \ 'BR2_PACKAGE_REFPOLICY_CUSTOM_GIT=y\n' in configlines and \ 'BR2_PACKAGE_REFPOLICY_CUSTOM_REPO_URL=""\n' in configlines: configlines.remove('BR2_PACKAGE_REFPOLICY_CUSTOM_GIT=y\n')