* [Buildroot] [PATCH] nodejs: unbreak 0.10.x host build
@ 2017-01-22 21:05 Peter Korsgaard
2017-01-23 8:07 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Peter Korsgaard @ 2017-01-22 21:05 UTC (permalink / raw)
To: buildroot
Fixes:
http://autobuild.buildroot.net/results/833/8334631b54fdfd43d38ca00f42e4d5a98e3a70c4/
http://autobuild.buildroot.net/results/9c0/9c08e0b745fab671123facb4a46f60eec5afd718/
Commit 24d90db52a74 (package/nodejs: disable icu support for host build)
added --with-intl=none to host configure flags to fix an issue related to
icu. The 0.10.x version unfortunately doesn't understand this configure
flag and errors out when provided, breaking the build:
configure: error: no such option: --with-intl
The 0.10.x version doesn't seem to have this icu issue (E.G. no autobuilder
issues before this commit and unable to reproduce locally), so fix it by
only passing --with-intl=none for the 6.9.x version.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/nodejs/nodejs.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/nodejs/nodejs.mk b/package/nodejs/nodejs.mk
index 82a012ad7..042cc3fb0 100644
--- a/package/nodejs/nodejs.mk
+++ b/package/nodejs/nodejs.mk
@@ -63,7 +63,7 @@ define HOST_NODEJS_CONFIGURE_CMDS
--without-dtrace \
--without-etw \
--shared-zlib \
- --with-intl=none \
+ $(if $(BR2_PACKAGE_NODEJS_V8_ARCH_SUPPORTS),--with-intl=none) \
)
endef
--
2.11.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH] nodejs: unbreak 0.10.x host build
2017-01-22 21:05 [Buildroot] [PATCH] nodejs: unbreak 0.10.x host build Peter Korsgaard
@ 2017-01-23 8:07 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2017-01-23 8:07 UTC (permalink / raw)
To: buildroot
Hello,
On Sun, 22 Jan 2017 22:05:51 +0100, Peter Korsgaard wrote:
> Fixes:
> http://autobuild.buildroot.net/results/833/8334631b54fdfd43d38ca00f42e4d5a98e3a70c4/
> http://autobuild.buildroot.net/results/9c0/9c08e0b745fab671123facb4a46f60eec5afd718/
>
> Commit 24d90db52a74 (package/nodejs: disable icu support for host build)
> added --with-intl=none to host configure flags to fix an issue related to
> icu. The 0.10.x version unfortunately doesn't understand this configure
> flag and errors out when provided, breaking the build:
>
> configure: error: no such option: --with-intl
>
> The 0.10.x version doesn't seem to have this icu issue (E.G. no autobuilder
> issues before this commit and unable to reproduce locally), so fix it by
> only passing --with-intl=none for the 6.9.x version.
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
> package/nodejs/nodejs.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-01-23 8:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-22 21:05 [Buildroot] [PATCH] nodejs: unbreak 0.10.x host build Peter Korsgaard
2017-01-23 8:07 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox