nano: needs mmu
authorAxel Lin <axel.lin@ingics.com>
Thu, 3 Oct 2013 02:13:32 +0000 (10:13 +0800)
committerPeter Korsgaard <peter@korsgaard.com>
Thu, 3 Oct 2013 10:12:44 +0000 (12:12 +0200)
Fix below build error if !BR2_USE_MMU:

text.o: In function `execute_command':
text.c:(.text+0x7f8): undefined reference to `fork'
text.o: In function `do_int_speller':
text.c:(.text+0x3480): undefined reference to `fork'
text.c:(.text+0x34f4): undefined reference to `fork'
text.c:(.text+0x3568): undefined reference to `fork'
text.o: In function `do_alt_speller':
text.c:(.text+0x3914): undefined reference to `fork'
collect2: ld returned 1 exit status
make[3]: *** [nano] Error 1

[Peter: fork() only in full version, so force tiny for !mmu]
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/nano/Config.in

index ef7f69df3640752f17c1e206c39e811ba49ecccf..9546fe781375d081f37c3012f0b4cfce77a32dee 100644 (file)
@@ -1,5 +1,7 @@
 config BR2_PACKAGE_NANO
        bool "nano"
+       # full version uses fork()
+       select BR2_PACKAGE_NANO_TINY if !BR2_USE_MMU
        select BR2_PACKAGE_NCURSES
        help
          A nice ncurses-based editor. Started out as a clone of pico.