Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOjas Shirekar <ojas.shirekar@gmail.com>2016-02-05 08:05:17 +0300
committerRich Trott <rtrott@gmail.com>2016-02-17 00:08:32 +0300
commit59c5ebfb1c0fb44086b66f1ddd0b2a04040cdfbf (patch)
tree74d1e1f01098235a550e75d259e41e547ab5e5c3 /configure
parent8c22c709ff93619c4c924ab4ea70e771d1f69ae7 (diff)
build: remove redundant TODO in configure
Remove a redundant TODO in configure: "# TODO(srl295): EBCDIC should be 'e'" as there is no plan to support EBCDIC systems any time soon. Refs: https://github.com/nodejs/node/issues/4607 PR-URL: https://github.com/nodejs/node/pull/5080 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 2287b36f460..8ef6c0b9b1a 100755
--- a/configure
+++ b/configure
@@ -1050,7 +1050,7 @@ def configure_intl(o):
if not icu_ver_major:
print ' Could not read U_ICU_VERSION_SHORT version from %s' % uvernum_h
sys.exit(1)
- icu_endianness = sys.byteorder[0]; # TODO(srl295): EBCDIC should be 'e'
+ icu_endianness = sys.byteorder[0];
o['variables']['icu_ver_major'] = icu_ver_major
o['variables']['icu_endianness'] = icu_endianness
icu_data_file_l = 'icudt%s%s.dat' % (icu_ver_major, 'l')