From 6ff763bd665a5fddbff0948bd6b4e91cbcec3216 Mon Sep 17 00:00:00 2001 From: Bartosz Sosnowski Date: Mon, 11 Dec 2017 18:08:20 +0100 Subject: [PATCH] win, build: fix without-intl option Fixes --with-intl option passed to configure script when without-intl is used Backport-PR-URL: https://github.com/nodejs/node/pull/19485 PR-URL: https://github.com/nodejs/node/pull/17614 Reviewed-By: James M Snell Reviewed-By: Anna Henningsen Reviewed-By: Richard Lau Reviewed-By: Gireesh Punathil --- vcbuild.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcbuild.bat b/vcbuild.bat index e6a6d0d20f7ac2..815a35d4c7030a 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -85,7 +85,7 @@ if /i "%1"=="upload" set upload=1&goto arg-ok if /i "%1"=="small-icu" set i18n_arg=%1&goto arg-ok if /i "%1"=="full-icu" set i18n_arg=%1&goto arg-ok if /i "%1"=="intl-none" set i18n_arg=%1&goto arg-ok -if /i "%1"=="without-intl" set i18n_arg=%1&goto arg-ok +if /i "%1"=="without-intl" set i18n_arg=none&goto arg-ok if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok if /i "%1"=="ignore-flaky" set test_args=%test_args% --flaky-tests=dontcare&goto arg-ok if /i "%1"=="enable-vtune" set enable_vtune_arg=1&goto arg-ok