@@ -1634,7 +1634,7 @@ def icu_download(path):
1634
1634
1635
1635
# write an empty file to start with
1636
1636
write (icu_config_name , do_not_edit +
1637
- pprint .pformat (icu_config , indent = 2 ) + '\n ' )
1637
+ pprint .pformat (icu_config , indent = 2 , width = 1024 ) + '\n ' )
1638
1638
1639
1639
# always set icu_small, node.gyp depends on it being defined.
1640
1640
o ['variables' ]['icu_small' ] = b (False )
@@ -1886,7 +1886,7 @@ def icu_download(path):
1886
1886
1887
1887
# write updated icu_config.gypi with a bunch of paths
1888
1888
write (icu_config_name , do_not_edit +
1889
- pprint .pformat (icu_config , indent = 2 ) + '\n ' )
1889
+ pprint .pformat (icu_config , indent = 2 , width = 1024 ) + '\n ' )
1890
1890
return # end of configure_intl
1891
1891
1892
1892
def configure_inspector (o ):
@@ -2024,7 +2024,7 @@ def make_bin_override():
2024
2024
print_verbose (output )
2025
2025
2026
2026
write ('config.gypi' , do_not_edit +
2027
- pprint .pformat (output , indent = 2 ) + '\n ' )
2027
+ pprint .pformat (output , indent = 2 , width = 1024 ) + '\n ' )
2028
2028
2029
2029
write ('config.status' , '#!/bin/sh\n set -x\n exec ./configure ' +
2030
2030
' ' .join ([pipes .quote (arg ) for arg in original_argv ]) + '\n ' )
0 commit comments