From: Asaf Kahlon Date: Sat, 26 Oct 2019 14:20:56 +0000 (+0300) Subject: utils/genrandconfig: use randint instead of (undefined) randInt X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9fc6bfb4b858300f001e0f740c79f8a4dbd8d6c4;p=buildroot.git utils/genrandconfig: use randint instead of (undefined) randInt Fixes https://gitlab.com/buildroot.org/buildroot/-/jobs/333788455 Signed-off-by: Asaf Kahlon Signed-off-by: Thomas Petazzoni --- diff --git a/utils/genrandconfig b/utils/genrandconfig index 54d66e40d7..9567739252 100755 --- a/utils/genrandconfig +++ b/utils/genrandconfig @@ -366,7 +366,7 @@ def gen_config(args): configlines.append("BR2_OPTIMIZE_2=y\n") if randint(0, 4) == 0: configlines.append("BR2_SYSTEM_ENABLE_NLS=y\n") - if randInt(0, 4) == 0: + if randint(0, 4) == 0: configlines.append("BR2_PIC_PIE=y\n") # Randomly enable BR2_REPRODUCIBLE 10% of times