1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 06:12:43 +01:00

dist/tools/kconfiglib: avoid rewriting /dev/null

This commit is contained in:
Leandro Lanzieri 2022-03-28 10:15:10 +02:00
parent 639a1d19f8
commit aa97392cad
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593

View File

@ -395,7 +395,7 @@ with error.""")
# HACK: Force all symbols to be evaluated, to catch warnings generated
# during evaluation (such as out-of-range integers)
kconf.write_config(os.devnull)
kconf.write_config(os.devnull, save_old=False)
if not check_configs(kconf) and not args.ignore_config_errors:
sys.exit(1)