Skip to content

Commit 605a01b

Browse files
tools: fixed bug causing JSON format to be broken
PR-URL: #41565 Reviewed-By: James M Snell <[email protected]>
1 parent 7319419 commit 605a01b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

configure.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1623,7 +1623,7 @@ def icu_download(path):
16231623

16241624
# write an empty file to start with
16251625
write(icu_config_name, do_not_edit +
1626-
pprint.pformat(icu_config, indent=2) + '\n')
1626+
pprint.pformat(icu_config, indent=2, width=1024) + '\n')
16271627

16281628
# always set icu_small, node.gyp depends on it being defined.
16291629
o['variables']['icu_small'] = b(False)
@@ -1875,7 +1875,7 @@ def icu_download(path):
18751875

18761876
# write updated icu_config.gypi with a bunch of paths
18771877
write(icu_config_name, do_not_edit +
1878-
pprint.pformat(icu_config, indent=2) + '\n')
1878+
pprint.pformat(icu_config, indent=2, width=1024) + '\n')
18791879
return # end of configure_intl
18801880

18811881
def configure_inspector(o):
@@ -2004,7 +2004,7 @@ def make_bin_override():
20042004
print_verbose(output)
20052005

20062006
write('config.gypi', do_not_edit +
2007-
pprint.pformat(output, indent=2) + '\n')
2007+
pprint.pformat(output, indent=2, width=1024) + '\n')
20082008

20092009
write('config.status', '#!/bin/sh\nset -x\nexec ./configure ' +
20102010
' '.join([pipes.quote(arg) for arg in original_argv]) + '\n')

0 commit comments

Comments
 (0)