diff options
author | Martin Bark <martin@barkynet.com> | 2015-12-23 12:16:05 +0000 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-23 17:49:02 +0100 |
commit | 41118ac9f2a24110f2bd6fb5cd47dae7e97ea71d (patch) | |
tree | b3c209d712fedbd84241f3430a729f349c26ad01 /package/nodejs | |
parent | a314b878a5aa7ef7b348f07cc0a1b00a4ad38445 (diff) | |
download | buildroot-41118ac9f2a24110f2bd6fb5cd47dae7e97ea71d.tar.gz buildroot-41118ac9f2a24110f2bd6fb5cd47dae7e97ea71d.zip |
package/nodejs: fixed comment for mips soft float
nodejs is only selected for mips hard float however the comment is
displayed for hard and soft float. Correct this by adding the missing
!BR2_MIPS_SOFT_FLOAT to the comment.
Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/nodejs')
-rw-r--r-- | package/nodejs/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/nodejs/Config.in b/package/nodejs/Config.in index 645ca7ab51..a8eb6d42c8 100644 --- a/package/nodejs/Config.in +++ b/package/nodejs/Config.in @@ -20,6 +20,7 @@ config BR2_PACKAGE_NODEJS comment "nodejs needs a toolchain w/ C++, dynamic library, threads" depends on BR2_USE_MMU depends on BR2_arm || BR2_i386 || BR2_x86_64 || BR2_mipsel + depends on !BR2_MIPS_SOFT_FLOAT depends on !BR2_ARM_CPU_ARMV4 depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS |