diff options
author | Chris Packham <judge.packham@gmail.com> | 2021-06-09 20:35:53 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2021-06-09 20:35:53 +1200 |
commit | f17fba608042e504f8506d51699dae8acc9abcea (patch) | |
tree | b2a513ce875618dfa84e0db74f131df600a6b091 /maintainer | |
parent | 21c68181268214a1790f61aadd6ab3d8c55f2002 (diff) | |
download | crosstool-ng-f17fba608042e504f8506d51699dae8acc9abcea.tar.gz crosstool-ng-f17fba608042e504f8506d51699dae8acc9abcea.tar.bz2 crosstool-ng-f17fba608042e504f8506d51699dae8acc9abcea.zip |
Move SRC_CUSTOM inside choice
Prior to commit 30bffa96 SRC_CUSTOM was inside the choice with
SRC_RELEASE and SRC_DEVEL making the 3 options mutually exclusive.
Restore this behaviour keeping the "fix" to keep kconfig happy.
Fixes #1151
Fixes: 30bffa96 ("don't nest choices")
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'maintainer')
-rw-r--r-- | maintainer/kconfig-versions.template | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/maintainer/kconfig-versions.template b/maintainer/kconfig-versions.template index 51bb28c0..77f10127 100644 --- a/maintainer/kconfig-versions.template +++ b/maintainer/kconfig-versions.template @@ -68,6 +68,12 @@ config @@fork|@@_SRC_DEVEL Default is the vendor repository at @@repository_url@@ #!end-if +config @@fork|@@_SRC_CUSTOM + bool "Custom location" + depends on EXPERIMENTAL + help + Custom directory or tarball. + endchoice if @@fork|@@_SRC_DEVEL @@ -163,12 +169,6 @@ config @@fork|@@_DEVEL_BOOTSTRAP endif -config @@fork|@@_SRC_CUSTOM - bool "Custom location" - depends on EXPERIMENTAL - help - Custom directory or tarball. - if @@fork|@@_SRC_CUSTOM config @@fork|@@_CUSTOM_LOCATION |