Created
December 26, 2018 02:07
-
-
Save tikurahul/577168056667c7e4cda67895e5f4cc2a to your computer and use it in GitHub Desktop.
Node Makefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node/Makefile b/node/Makefile | |
index f8a68a2..e60c891 100644 | |
--- a/node/Makefile | |
+++ b/node/Makefile | |
@@ -119,7 +119,7 @@ define Package/node/config | |
choice | |
prompt "ICU Selection" | |
default NODEJS_ICU_NONE | |
help | |
Select i18n features | |
@@ -171,7 +171,7 @@ CONFIGURE_ARGS:= \ | |
$(if $(CONFIG_NODEJS_10),,$(if $(CONFIG_NODEJS_11),,--shared-openssl)) \ | |
$(if $(CONFIG_NODEJS_DEBUG),--debug) \ | |
$(if $(CONFIG_NODEJS_ICU_SMALL),, \ | |
- --with-intl=$(if $(CONFIG_NODEJS_ICU_SYSTEM),system-icu,none)) \ | |
+ --with-intl=$(if $(CONFIG_NODEJS_ICU_SYSTEM),system-icu,small-icu)) \ | |
$(if $(findstring mips,$(NODEJS_CPU)), \ | |
$(if $(CONFIG_SOFT_FLOAT),--with-mips-float-abi=soft)) \ | |
$(if $(findstring +neon,$(CONFIG_CPU_TYPE)),--with-arm-fpu=neon) \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment