@@ -1593,7 +1593,7 @@ def icu_download(path):
15931593
15941594 # write an empty file to start with
15951595 write (icu_config_name , do_not_edit +
1596- pprint .pformat (icu_config , indent = 2 ) + '\n ' )
1596+ pprint .pformat (icu_config , indent = 2 , width = 1024 ) + '\n ' )
15971597
15981598 # always set icu_small, node.gyp depends on it being defined.
15991599 o ['variables' ]['icu_small' ] = b (False )
@@ -1845,7 +1845,7 @@ def icu_download(path):
18451845
18461846 # write updated icu_config.gypi with a bunch of paths
18471847 write (icu_config_name , do_not_edit +
1848- pprint .pformat (icu_config , indent = 2 ) + '\n ' )
1848+ pprint .pformat (icu_config , indent = 2 , width = 1024 ) + '\n ' )
18491849 return # end of configure_intl
18501850
18511851def configure_inspector (o ):
@@ -1974,7 +1974,7 @@ def make_bin_override():
19741974print_verbose (output )
19751975
19761976write ('config.gypi' , do_not_edit +
1977- pprint .pformat (output , indent = 2 ) + '\n ' )
1977+ pprint .pformat (output , indent = 2 , width = 1024 ) + '\n ' )
19781978
19791979write ('config.status' , '#!/bin/sh\n set -x\n exec ./configure ' +
19801980 ' ' .join ([pipes .quote (arg ) for arg in original_argv ]) + '\n ' )
0 commit comments