diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2013-11-27 10:18:05 +0000 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-27 13:58:16 +0100 |
commit | 2d9ee197c24b3d28cb24a443ed7f645a01b2777f (patch) | |
tree | 2c7a529c6ff895b356d3f738b7e6c0906ca46f31 | |
parent | 3783b84eef8a258583939d0ab3ce3fb5c5a68bb8 (diff) | |
download | buildroot-2d9ee197c24b3d28cb24a443ed7f645a01b2777f.tar.gz buildroot-2d9ee197c24b3d28cb24a443ed7f645a01b2777f.zip |
tinymembench: Fix typo error on dependence
It should be BR2_MIPS_NABI64 instead of BR_MIPS_NABI64
Fixes:
http://autobuild.buildroot.net/results/c5d/c5da2d99c09b1a2f7da23f1636f1ccc8978cc4a3/
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/tinymembench/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/tinymembench/Config.in b/package/tinymembench/Config.in index 7e8aaf5469..8f6e1a2b35 100644 --- a/package/tinymembench/Config.in +++ b/package/tinymembench/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_TINYMEMBENCH bool "tinymembench" - depends on !BR2_MIPS_NABI32 && !BR_MIPS_NABI64 + depends on !BR2_MIPS_NABI32 && !BR2_MIPS_NABI64 help Tinymembench is a simple memory benchmark program, which tries to measure the peak bandwidth of sequential memory |