mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-20 17:12:55 +00:00
config: fix indentation for options marked EXPERIMENTAL or OBSOLETE
Change the 2-space separation into a 1-space separation, for the sake of homogeneity.
This commit is contained in:
parent
0c63755957
commit
b6568d675b
@ -13,12 +13,12 @@ choice
|
||||
|
||||
config BINUTILS_V_2_19_51_0_2
|
||||
bool
|
||||
prompt "2.19.51.0.2 (EXPERIMENTAL)"
|
||||
prompt "2.19.51.0.2 (EXPERIMENTAL)"
|
||||
depends on EXPERIMENTAL
|
||||
|
||||
config BINUTILS_V_2_19_51_0_1
|
||||
bool
|
||||
prompt "2.19.51.0.1 (EXPERIMENTAL)"
|
||||
prompt "2.19.51.0.1 (EXPERIMENTAL)"
|
||||
depends on EXPERIMENTAL
|
||||
|
||||
config BINUTILS_V_2_19_50_0_1
|
||||
|
@ -21,7 +21,7 @@ choice
|
||||
|
||||
config CC_V_4_4_1
|
||||
bool
|
||||
prompt "4.4.1 (EXPERIMENTAL)"
|
||||
prompt "4.4.1 (EXPERIMENTAL)"
|
||||
depends on EXPERIMENTAL
|
||||
select CC_GCC_4_3_or_later
|
||||
select CC_GCC_4_4_or_later
|
||||
|
@ -20,7 +20,7 @@ config LTRACE_V_0_5_2
|
||||
|
||||
config LTRACE_V_0_5_1
|
||||
bool
|
||||
prompt "0.5.1 (EXPERIMENTAL)"
|
||||
prompt "0.5.1 (EXPERIMENTAL)"
|
||||
depends on EXPERIMENTAL
|
||||
|
||||
config LTRACE_V_0_5
|
||||
|
@ -77,13 +77,13 @@ addToolVersion() {
|
||||
SedExpr1="${SedExpr1} prompt \"${version}"
|
||||
case "${EXP},${OBS}" in
|
||||
,) ;;
|
||||
,*) exp_obs_prompt=" (OBSOLETE)"
|
||||
,*) exp_obs_prompt=" (OBSOLETE)"
|
||||
deps=" depends on OBSOLETE"
|
||||
;;
|
||||
*,) exp_obs_prompt=" (EXPERIMENTAL)"
|
||||
*,) exp_obs_prompt=" (EXPERIMENTAL)"
|
||||
deps=" depends on EXPERIMENTAL"
|
||||
;;
|
||||
*) exp_obs_prompt=" (EXPERIMENTAL, OBSOLETE)"
|
||||
*) exp_obs_prompt=" (EXPERIMENTAL, OBSOLETE)"
|
||||
deps=" depends on EXPERIMENTAL \\&\\& OBSOLETE"
|
||||
;;
|
||||
esac
|
||||
|
Loading…
x
Reference in New Issue
Block a user