diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-21 22:26:58 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-11-06 23:45:31 +0100 |
commit | 8c760a7f6af77d8b52ff2b1397936ecef12114a0 (patch) | |
tree | 1269cfa01c8b8518cfcfee967d3d50e90832960e /package/nodejs | |
parent | 461f08072f0ae06c98ae5e72ef2dbb266a2672f9 (diff) | |
download | buildroot-8c760a7f6af77d8b52ff2b1397936ecef12114a0.tar.gz buildroot-8c760a7f6af77d8b52ff2b1397936ecef12114a0.zip |
nodejs: use BR2_ARM_CPU_ARM* options
Adjust the nodejs Config.in dependencies to use the per ARM
architecture BR2_ARM_CPU_ARM* options instead of the per ARM core
options.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/nodejs')
-rw-r--r-- | package/nodejs/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/nodejs/Config.in b/package/nodejs/Config.in index 077a043ddb..47e80ec646 100644 --- a/package/nodejs/Config.in +++ b/package/nodejs/Config.in @@ -7,7 +7,7 @@ config BR2_PACKAGE_NODEJS depends on BR2_arm || BR2_i386 || BR2_x86_64 || BR2_mipsel depends on !BR2_MIPS_SOFT_FLOAT # ARM needs BLX, so v5t+ - depends on !(BR2_arm920t || BR2_arm922t || BR2_fa526) + depends on !BR2_ARM_CPU_ARMV4 # uses fork() depends on BR2_USE_MMU select BR2_PACKAGE_ZLIB @@ -19,7 +19,7 @@ config BR2_PACKAGE_NODEJS comment "nodejs needs a toolchain w/ C++, IPv6, largefile, threads" depends on BR2_USE_MMU depends on BR2_arm || BR2_i386 || BR2_x86_64 || BR2_mipsel - depends on !(BR2_arm920t || BR2_arm922t || BR2_fa526) + depends on !BR2_ARM_CPU_ARMV4 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || \ !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INET_IPV6 |