diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2015-01-03 06:10:23 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-01-13 09:53:09 -0500 |
commit | c22eacfe82f9c98408f6e7336a2b500a45c9f732 (patch) | |
tree | 455486031aeb4e4083fbb5322026f42cea21d905 /arch/mips/Kconfig | |
parent | 78aaf956ba3ae0bfabbadc0393395cc4f7a7070f (diff) |
MIPS: Kconfig: Fix recursive dependency.
[...]
HOSTCC scripts/kconfig/zconf.tab.o
HOSTLD scripts/kconfig/conf
arch/mips/Kconfig:2681:error: recursive dependency detected!
arch/mips/Kconfig:2681: symbol MIPS32_N32 depends on MIPS32_COMPAT
arch/mips/Kconfig:2658: symbol MIPS32_COMPAT is selected by MIPS32_N32
Introduced by d74473bdf7a4c1ef7ae2b75f585fe5649ac2dcea (MIPS: Compat: Fix
build error if CONFIG_MIPS32_COMPAT but no compat ABI.)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/Kconfig')
-rw-r--r-- | arch/mips/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index f4d6616877f2..843713c05b79 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
@@ -2680,7 +2680,7 @@ config MIPS32_O32 | |||
2680 | 2680 | ||
2681 | config MIPS32_N32 | 2681 | config MIPS32_N32 |
2682 | bool "Kernel support for n32 binaries" | 2682 | bool "Kernel support for n32 binaries" |
2683 | depends on MIPS32_COMPAT | 2683 | depends on 64BIT |
2684 | select COMPAT | 2684 | select COMPAT |
2685 | select MIPS32_COMPAT | 2685 | select MIPS32_COMPAT |
2686 | select SYSVIPC_COMPAT if SYSVIPC | 2686 | select SYSVIPC_COMPAT if SYSVIPC |