config/arch/sh.in.2
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Thu Jan 16 23:22:19 2014 +0100 (2014-01-16)
changeset 3280 31d303a49013
parent 1782 5eda3399a797
permissions -rw-r--r--
configure: s/don't/do not/

The autoconf manual suggests not to use ' in messages.

I don't why they do, but it breaks syntax-highlighting.

Just remove the lone quote we have.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # Super-H specific configuration file
     2 
     3 choice
     4     bool
     5     prompt "Variant"
     6 
     7 config ARCH_SH_SH3
     8     bool
     9     prompt "sh3"
    10 
    11 config ARCH_SH_SH4
    12     bool
    13     prompt "sh4"
    14 
    15 config ARCH_SH_SH4A
    16     bool
    17     prompt "sh4a"
    18 
    19 endchoice
    20 
    21 config ARCH_SH_VARIANT
    22     string
    23     default "sh3"   if ARCH_SH_SH3
    24     default "sh4"   if ARCH_SH_SH4
    25     default "sh4a"  if ARCH_SH_SH4A