@@ -1623,7 +1623,7 @@ def icu_download(path):
1623
1623
1624
1624
# write an empty file to start with
1625
1625
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 ' )
1627
1627
1628
1628
# always set icu_small, node.gyp depends on it being defined.
1629
1629
o ['variables' ]['icu_small' ] = b (False )
@@ -1875,7 +1875,7 @@ def icu_download(path):
1875
1875
1876
1876
# write updated icu_config.gypi with a bunch of paths
1877
1877
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 ' )
1879
1879
return # end of configure_intl
1880
1880
1881
1881
def configure_inspector (o ):
@@ -2004,7 +2004,7 @@ def make_bin_override():
2004
2004
print_verbose (output )
2005
2005
2006
2006
write ('config.gypi' , do_not_edit +
2007
- pprint .pformat (output , indent = 2 ) + '\n ' )
2007
+ pprint .pformat (output , indent = 2 , width = 1024 ) + '\n ' )
2008
2008
2009
2009
write ('config.status' , '#!/bin/sh\n set -x\n exec ./configure ' +
2010
2010
' ' .join ([pipes .quote (arg ) for arg in original_argv ]) + '\n ' )
0 commit comments