From 28d992de2ef7dc0bc2dc23787e756766e02c65e6 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Mon, 19 Aug 2019 18:21:17 +0800 Subject: [PATCH] litex: fix typo in lxbuildenv Signed-off-by: Sean Cross --- litex/lxbuildenv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/lxbuildenv.py b/litex/lxbuildenv.py index a57d1c8..dd155b8 100644 --- a/litex/lxbuildenv.py +++ b/litex/lxbuildenv.py @@ -83,7 +83,7 @@ def read_configuration(filename, args): # Set up sub-dependencies if 'riscv' in dependencies: dependencies['make'] = 1 - if args.lx_force_git or (not configuration['skip-git'] and not args.lx_ignore_git): + if args.lx_check_git or (not configuration['skip-git'] and not args.lx_ignore_git): dependencies['git'] = 1 configuration['dependencies'] = list(dependencies.keys()) return configuration