From 8d832f98cc6423f830cad30bb7dfb23ed9096d7a Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Wed, 26 Oct 2022 15:00:56 -0500 Subject: [PATCH] build: fix icu-small build on mac with ICU 72.1 - RTTI is needed for genrb now Fixes: https://github.com/nodejs/node/issues/45174 --- tools/icu/icu-generic.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/icu/icu-generic.gyp b/tools/icu/icu-generic.gyp index 3e830aa097e570..7c22e72a52bc19 100644 --- a/tools/icu/icu-generic.gyp +++ b/tools/icu/icu-generic.gyp @@ -419,7 +419,7 @@ 'target_name': 'genrb', 'type': 'executable', 'toolsets': [ 'host' ], - 'dependencies': [ 'icutools' ], + 'dependencies': [ 'icutools', 'icu_implementation' ], 'sources': [ '<@(icu_src_genrb)' ],