From ee45a6be082b4d9e680299ed8237c05575359d07 Mon Sep 17 00:00:00 2001 From: Ojas Shirekar Date: Fri, 5 Feb 2016 10:35:17 +0530 Subject: [PATCH] build: removed redundant TODO in configure removed a redundant TODO in configure: "# TODO(srl295): EBCDIC should be 'e'" as there is no plan to support EBCDIC systems any time soon. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 00f20f75d40af8..7edaed31f3ff8d 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')