mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Fixes the reformatting of the sysconfigdata to be reproducible in the sysroot as well as in the package. During this a bug was uncovered in the way that the data was reformatted where it appears that python cannot parse a single line of code over 40000 characters. To work around this, pass a maximum with of "1" to pprint instead of sys.maxsize which will cause it to wrap as often as possible and should keep it reproducible. (From OE-Core rev: 2def2c145c303f27d93ba73876d4c6b214f18166) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
417 B
Python
22 lines
417 B
Python
#! /usr/bin/env python3
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright 2019 by Garmin Ltd. or its subsidiaries
|
|
#
|
|
# A script to reformat python sysconfig
|
|
|
|
import sys
|
|
import pprint
|
|
l = {}
|
|
g = {}
|
|
with open(sys.argv[1], 'r') as f:
|
|
exec(f.read(), g, l)
|
|
|
|
with open(sys.argv[1], 'w') as f:
|
|
for k in sorted(l.keys()):
|
|
f.write('%s = ' % k)
|
|
pprint.pprint(l[k], stream=f, width=1)
|
|
f.write('\n')
|
|
|